Package org.verapdf.core
Class ProfileException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.verapdf.core.VeraPDFException
org.verapdf.core.ProfileException
- All Implemented Interfaces:
Serializable
Exception that occurs when there is a problem parsing a validation profile.
- Author:
- Maksim Bezrukov
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for ProfileException.ProfileException(String message) Constructs new ProfileException with a String messageProfileException(String message, Throwable cause) Constructs new ProfileException 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
-
ProfileException
public ProfileException()Default constructor for ProfileException. -
ProfileException
Constructs new ProfileException with a String message- Parameters:
message- a String message describing the cause of the exception.
-
ProfileException
Constructs new ProfileException 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.
-