Package org.verapdf.core
Class VeraPDFException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.verapdf.core.VeraPDFException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EncryptedPdfException,FeatureParsingException,ModelParsingException,ProfileException,ValidationException
Top level exception class for all exceptions in veraPDF library.
- Author:
- Maksim Bezrukov
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for VeraPDFException.VeraPDFException(String message) Constructs new VeraPDFException with a String messageVeraPDFException(String message, Throwable cause) Constructs new VeraPDFException with a String message and a Throwable cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
VeraPDFException
public VeraPDFException()Default constructor for VeraPDFException. -
VeraPDFException
Constructs new VeraPDFException with a String message- Parameters:
message- a String message describing the cause of the exception.
-
VeraPDFException
Constructs new VeraPDFException with a String message and a Throwable cause.- Parameters:
message- a String message describing the cause of the exception.cause- Throwable cause of the exception.
-