Module org.tquadrat.foundation.base
Class ValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.tquadrat.foundation.exception.ValidationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CharSequenceTooLongException
,NullArgumentException
@ClassVersion(sourceVersion="$Id: ValidationException.java 1023 2022-03-05 23:56:16Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public class ValidationException
extends IllegalArgumentException
This is a specialized implementation for the
IllegalArgumentException
that is meant as the root for a hierarchy of exceptions caused by
validation errors.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: ValidationException.java 1023 2022-03-05 23:56:16Z tquadrat $
- Since:
- 0.0.5
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.exception.ValidationException"
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newValidationException
instance.ValidationException
(String message) Creates a newValidationException
instance.ValidationException
(String message, Throwable cause) Creates a newValidationException
instance.ValidationException
(Throwable cause) Creates a newValidationException
instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
MSG_ValidationFailed
The message text for a validation error.- See Also:
-
-
Constructor Details
-
ValidationException
public ValidationException()Creates a newValidationException
instance. -
ValidationException
Creates a newValidationException
instance.- Parameters:
message
- The message that provides details on the failed validation.
-
ValidationException
Creates a newValidationException
instance.- Parameters:
message
- The message that provides details on the failed validation.cause
- The exception that is related to the validation error.
-
ValidationException
Creates a newValidationException
instance.- Parameters:
cause
- The exception that is related to the validation error.
-