Class ConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.adamantic.quicknote.exceptions.SystemException
io.adamantic.quicknote.exceptions.ConfigException
- All Implemented Interfaces:
Serializable
Exception thrown when a configuration error is detected.
- Author:
- Domenico Barra - domenico@adamantic.io
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConfigException(String message) Constructs a new configuration exception with the given message.ConfigException(String message, Throwable cause) Constructs a new configuration exception with the given message and 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
-
ConfigException
Constructs a new configuration exception with the given message.- Parameters:
message- the exception message.
-
ConfigException
Constructs a new configuration exception with the given message and cause.- Parameters:
message- the exception message.cause- the exception that has caused this configuration exception.
-