Uses of Class
com.qoppa.pdf.PDFException

Packages that use PDFException
com.qoppa.pdf General classes used by different objects throughout the library. 
com.qoppa.pdfSecure Main PDFSecure classes. 
 

Uses of PDFException in com.qoppa.pdf
 

Subclasses of PDFException in com.qoppa.pdf
 class PDFPermissionException
          Exception thrown when there is any permission error.
 

Methods in com.qoppa.pdf that throw PDFException
static DocumentInfo DocumentInfo.getDocumentInfo(String fileName, IPassword passwords)
          Static method to get the document information from a document in a file.
static DocumentInfo DocumentInfo.getDocumentInfo(InputStream inStream, IPassword password)
          Static method to get the document information from a document from an InputStream.
static DocumentInfo DocumentInfo.getDocumentInfo(URL url, IPassword password)
          Static method to get the document information from a document from a URL.
 

Uses of PDFException in com.qoppa.pdfSecure
 

Methods in com.qoppa.pdfSecure that throw PDFException
 void PDFSecure.setSecurity(String newPermPwd, String newOpenPwd, PDFPermissions permissions, String currentPermPwd, int encryptType)
          Sets the security for this document.
 void PDFSecure.saveDocument(String fileName)
          Saves this document to a file.
 void PDFSecure.saveDocument(OutputStream outStream)
          Saves this document to an output stream.
 void PDFSecure.clearSecurity(String currentPermissionsPwd)
          Clears the security for this document.
 void PDFSecure.signDocument(SignatureField signField, SigningInformation signingInfo)
          Signs this document using the given signature field.
 SignatureField PDFSecure.addSignatureField(int pageIndex, String fieldName, Rectangle2D bounds)
          Adds a signature field to a page in the documnet.
 

Constructors in com.qoppa.pdfSecure that throw PDFException
PDFSecure(String fileName, IPassword password)
          Loads a PDF document from a file.
PDFSecure(InputStream inStream, IPassword password)
          Loads a PDF document from an InputStream.
PDFSecure(URL url, IPassword password)
          Loads a PDF document from a URL.