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:
- java.io.Serializable
- public class LogConfigurationException
- extends java.lang.RuntimeException
An exception that is thrown only if a suitable LogFactory
or Log
instance cannot be created by the corresponding
factory methods.
- Version:
- $Revision: 1.2 $ $Date: 2003/03/30 23:42:36 $
- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
Field Summary |
protected java.lang.Throwable |
cause
The underlying cause of this exception. |
Fields inherited from class java.lang.Throwable |
backtrace, detailMessage, serialVersionUID |
Constructor Summary |
LogConfigurationException()
Construct a new exception with null as its detail message. |
LogConfigurationException(java.lang.String message)
Construct a new exception with the specified detail message. |
LogConfigurationException(java.lang.String message,
java.lang.Throwable cause)
Construct a new exception with the specified detail message and cause. |
LogConfigurationException(java.lang.Throwable cause)
Construct a new exception with the specified cause and a derived
detail message. |
Method Summary |
java.lang.Throwable |
getCause()
Return the underlying cause of this exception (if any). |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait |
cause
protected java.lang.Throwable cause
- The underlying cause of this exception.
LogConfigurationException
public LogConfigurationException()
- Construct a new exception with
null
as its detail message.
LogConfigurationException
public LogConfigurationException(java.lang.String message)
- Construct a new exception with the specified detail message.
- Parameters:
message
- The detail message
LogConfigurationException
public LogConfigurationException(java.lang.Throwable cause)
- Construct a new exception with the specified cause and a derived
detail message.
- Parameters:
cause
- The underlying cause
LogConfigurationException
public LogConfigurationException(java.lang.String message,
java.lang.Throwable cause)
- Construct a new exception with the specified detail message and cause.
- Parameters:
message
- The detail messagecause
- The underlying cause
getCause
public java.lang.Throwable getCause()
- Return the underlying cause of this exception (if any).
Copyright (c) 2002-2003 - Apache Software Foundation