Class PDFSecurityAuthorizationException

All Implemented Interfaces:
Serializable

public class PDFSecurityAuthorizationException extends PDFSecurityException
This exception indicates that a request has failed due not being able to get authorization for the request or one of the actions required by that request from the SecurityHandler. While the Adobe PDF Java Toolkit may only declare that they throw a PDFSecurityException in their method declaration that exception may be one of the descendant exceptions such as this one. If a client wishes to know more about the reason for failure they can add catch clauses for specific subclass exceptions such as this one.
See Also:
  • Constructor Details

    • PDFSecurityAuthorizationException

      public PDFSecurityAuthorizationException(String message)
      Create a new PDFSecurityAuthorizationException.
      Parameters:
      message - the detail message.
    • PDFSecurityAuthorizationException

      public PDFSecurityAuthorizationException(String message, Throwable cause)
      Create a new PDFSecurityAuthorizationException wrapping an existing exception.
      Parameters:
      message - the detail message.
      cause - the cause.
    • PDFSecurityAuthorizationException

      public PDFSecurityAuthorizationException(Throwable cause)
      Create a new PDFSecurityAuthorizationException wrapping an existing exception.
      Parameters:
      cause - the cause.