public class ConfigurationException extends OperationFailed
reason, serialVersionUID
Constructor and Description |
---|
ConfigurationException()
Constructs a new exception with
null as
its detail message. |
ConfigurationException(java.lang.String message)
Constructs a new exception with the specified detail message.
|
ConfigurationException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with the specified detail message,
cause.
|
ConfigurationException(java.lang.Throwable cause)
Constructs a new exception with the specified cause
and a detail message of
(cause==null ? null :
cause.toString()) (which typically contains the
class and detail message of cause). |
public ConfigurationException()
null
as
its detail message. Also sets null in the reason field.public ConfigurationException(java.lang.String message)
public ConfigurationException(java.lang.String message, java.lang.Throwable cause)
(cause==null ? message : message + ": " + cause.toString()
public ConfigurationException(java.lang.Throwable cause)
(cause==null ? null :
cause.toString())
(which typically contains the
class and detail message of cause).
Also sets the detail message in the reason field.