Constructors Summary |
---|
public LogConfigurationException()Construct a new exception with null as its detail message.
super();
|
public LogConfigurationException(String message)Construct a new exception with the specified detail message.
super(message);
|
public LogConfigurationException(Throwable cause)Construct a new exception with the specified cause and a derived
detail message.
this((cause == null) ? null : cause.toString(), cause);
|
public LogConfigurationException(String message, Throwable cause)Construct a new exception with the specified detail message and cause.
super(message + " (Caused by " + cause + ")");
this.cause = cause; // Two-argument version requires JDK 1.4 or later
|