Class PDFSignatureException

  • All Implemented Interfaces:
    java.io.Serializable

    public class PDFSignatureException
    extends PDFException
    This exception indicates that some general security issue has occured during the processing of the request. This actual cause may be one of the descendant exceptions to this one. There are a limited number of these defined within the Adobe PDF Java Toolkit for the most common cases. However, a client that is providing its own implementation of the SecurityHandler interface may wish to subclass one of these to provide more specific information.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      PDFSignatureException​(java.lang.String message)
      Create a new PDFSecurityException.
      PDFSignatureException​(java.lang.String message, java.lang.Throwable cause)
      Create a new PDFSecurityException wrapping an existing exception.
      PDFSignatureException​(java.lang.Throwable cause)
      Create a new PDFSecurityException wrapping an existing exception.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • PDFSignatureException

        public PDFSignatureException​(java.lang.String message)
        Create a new PDFSecurityException.
        Parameters:
        message - the detail message.
      • PDFSignatureException

        public PDFSignatureException​(java.lang.String message,
                                     java.lang.Throwable cause)
        Create a new PDFSecurityException wrapping an existing exception.
        Parameters:
        message - the detail message.
        cause - the cause.
      • PDFSignatureException

        public PDFSignatureException​(java.lang.Throwable cause)
        Create a new PDFSecurityException wrapping an existing exception.
        Parameters:
        cause - the cause.