Class ValidatorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- se.litsec.opensaml.common.validation.ValidatorException
-
- All Implemented Interfaces:
Serializable
public class ValidatorException extends Exception
Generic exception class for validator errors.- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValidatorException(String message)
Constructor accepting an error message.ValidatorException(String message, Throwable cause)
Constructor accepting an error message and the cause of the error.ValidatorException(ValidationContext context)
Constructor that initializes based on the suppliedValidationContext
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ValidatorException
public ValidatorException(ValidationContext context)
Constructor that initializes based on the suppliedValidationContext
.- Parameters:
context
- validation context
-
ValidatorException
public ValidatorException(String message)
Constructor accepting an error message.- Parameters:
message
- the error message
-
-