org.apache.commons.logging
public class LogConfigurationException extends RuntimeException
An exception that is thrown only if a suitable LogFactory
or Log
instance cannot be created by the corresponding
factory methods.
In this version of JCL, this exception will never be thrown in practice. However, it is included here to ensure total compile time and run time compatibility with the original JCL 1.0.4.
Field Summary | |
---|---|
protected Throwable | cause
The underlying cause of this exception. |
Constructor Summary | |
---|---|
LogConfigurationException()
Construct a new exception with null as its detail message. | |
LogConfigurationException(String message)
Construct a new exception with the specified detail message.
| |
LogConfigurationException(Throwable cause)
Construct a new exception with the specified cause and a derived
detail message.
| |
LogConfigurationException(String message, Throwable cause)
Construct a new exception with the specified detail message and cause.
|
Method Summary | |
---|---|
Throwable | getCause()
Return the underlying cause of this exception (if any). |
null
as its detail message.Parameters: message The detail message
Parameters: cause The underlying cause
Parameters: message The detail message cause The underlying cause