Package org.apache.commons.logging
Class LogConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.commons.logging.LogConfigurationException
-
- All Implemented Interfaces:
Serializable
public class LogConfigurationException extends RuntimeException
An exception that is thrown only if a suitable
LogFactoryorLoginstance cannot be created by the corresponding factory methods.- Version:
- $Revision: 1.6 $ $Date: 2004/02/28 21:46:45 $
- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LogConfigurationException()Construct a new exception withnullas its detail message.LogConfigurationException(String message)Construct a new exception with the specified detail message.LogConfigurationException(String message, Throwable cause)Construct a new exception with the specified detail message and cause.LogConfigurationException(Throwable cause)Construct a new exception with the specified cause and a derived detail message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetCause()Return the underlying cause of this exception (if any).-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
cause
protected Throwable cause
The underlying cause of this exception.
-
-
Constructor Detail
-
LogConfigurationException
public LogConfigurationException()
Construct a new exception withnullas its detail message.
-
LogConfigurationException
public LogConfigurationException(String message)
Construct a new exception with the specified detail message.- Parameters:
message- The detail message
-
LogConfigurationException
public LogConfigurationException(Throwable cause)
Construct a new exception with the specified cause and a derived detail message.- Parameters:
cause- The underlying cause
-
-