public class Configuration_Exception extends Exception
Modifier and Type | Field and Description |
---|---|
static String |
ID
Class identification name with source code version and date.
|
Constructor and Description |
---|
Configuration_Exception()
Constructs a Configuration_Exception.
|
Configuration_Exception(String message)
Constructs a Configuration_Exception with a message.
|
Configuration_Exception(String message,
Throwable cause)
Constructs a Configuration_Exception with a message and a cause.
|
Configuration_Exception(Throwable cause)
Constructs a Configuration_Exception having a cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public static final String ID
public Configuration_Exception(String message, Throwable cause)
N.B.: Once a cause is set it can not be changed. Therefore,
though it is allowed to set the cause to null, the
Configuration_Exception will not do this to avoid the situation of
not being able to replace a null cause with a valid cause. Use the
Throwable.initCause(Throwable)
method to provide a cause
after the Configuration_Exception has been constructed without one.
message
- The exception's message String. If null the class identification
will be used.cause
- The exception's Throwable cause. If null no cause is
set in the exception object.public Configuration_Exception(Throwable cause)
The exception message will be Configuration_Exception class ID.
cause
- The exception's Throwable cause. If null no cause is
set in the exception object.Configuration_Exception(String, Throwable)
public Configuration_Exception(String message)
message
- The exception's message String (may be null).Configuration_Exception(String, Throwable)
public Configuration_Exception()
The exception will have the ID of this class as its message.