Package org.verapdf.core
Class ValidationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.verapdf.core.VeraPDFException
-
- org.verapdf.core.ValidationException
-
- All Implemented Interfaces:
Serializable
public class ValidationException extends VeraPDFException
Exception type for problems encountered while performing validation.- Author:
- Maksim Bezrukov
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValidationException()Default constructor for ValidationException.ValidationException(String message)Constructs new ValidationException with a String messageValidationException(String message, Throwable cause)Constructs new ValidationException 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 Detail
-
ValidationException
public ValidationException()
Default constructor for ValidationException.
-
ValidationException
public ValidationException(String message)
Constructs new ValidationException with a String message- Parameters:
message- a String message describing the cause of the exception.
-
-