Class BadSecurityHandlerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.tom_roush.pdfbox.pdmodel.encryption.BadSecurityHandlerException
-
- All Implemented Interfaces:
Serializable
public class BadSecurityHandlerException extends Exception
This exception can be thrown by the SecurityHandlersManager class when a document required an unimplemented security handler to be opened.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BadSecurityHandlerException()Default Constructor.BadSecurityHandlerException(Exception e)Constructor.BadSecurityHandlerException(String msg)Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
BadSecurityHandlerException
public BadSecurityHandlerException()
Default Constructor.
-
BadSecurityHandlerException
public BadSecurityHandlerException(Exception e)
Constructor.- Parameters:
e- A sub exception.
-
BadSecurityHandlerException
public BadSecurityHandlerException(String msg)
Constructor.- Parameters:
msg- Message describing exception.
-
-