Package org.tquadrat.foundation.config
Class ConfigInitException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.tquadrat.foundation.exception.ValidationException
org.tquadrat.foundation.config.ConfigInitException
- All Implemented Interfaces:
Serializable
@ClassVersion(sourceVersion="$Id: ConfigInitException.java 884 2021-03-22 18:02:51Z tquadrat $")
@API(status=STABLE,
since="0.0.1")
public class ConfigInitException
extends ValidationException
This exception type is used to signal a problem with the initialisation of
a configuration bean.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: ConfigInitException.java 884 2021-03-22 18:02:51Z tquadrat $
- Since:
- 0.0.1
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.ConfigInitException"
-
Field Summary
Fields inherited from class org.tquadrat.foundation.exception.ValidationException
MSG_ValidationFailed
-
Constructor Summary
ConstructorsConstructorDescriptionConfigInitException
(String message) Creates a newConfigInitException
instance.ConfigInitException
(String message, Throwable cause) Creates a newConfigInitException
instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConfigInitException
Creates a newConfigInitException
instance.- Parameters:
message
- The message that provides details on the failed validation.
-
ConfigInitException
Creates a newConfigInitException
instance.- Parameters:
message
- The message that provides details on the failed validation.cause
- The exception that is related to the initialisation error.
-