repo1.maven.org$maven2@commons-logging$commons-logging@1.1.1
repo1.maven.org$maven2@commons-logging$commons-logging@1.1.1@org$apache$commons$logging$LogConfigurationException.java
file
oh
o
[]
package org.apache.commons.logging;
An exception that is thrown only if a suitable LogFactory
or Log instance cannot be created by the corresponding
factory methods.
- Author(s):
- Craig R. McClanahan
- Version:
- $Revision: 424107 $ $Date: 2006-07-21 01:15:42 +0200 (fr, 21 jul 2006) $
Construct a new exception with
null as its detail message.
Construct a new exception with the specified detail message.
- Parameters:
message The detail message
Construct a new exception with the specified cause and a derived
detail message.
- Parameters:
cause The underlying cause
this((cause == null) ? null : cause.toString(), cause);
Construct a new exception with the specified detail message and cause.
- Parameters:
message The detail messagecause The underlying cause
super(message + " (Caused by " + cause + ")");
The underlying cause of this exception.
Return the underlying cause of this exception (if any).