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:
java.io.Serializable
public class LogConfigurationException extends java.lang.RuntimeExceptionAn exception that is thrown only if a suitableLogFactoryorLoginstance cannot be created by the corresponding factory methods.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.ThrowablecauseDeprecated.UseThrowable.getCause().private static longserialVersionUIDSerializable version identifier.
-
Constructor Summary
Constructors Constructor Description LogConfigurationException()Constructs a new exception withnullas its detail message.LogConfigurationException(java.lang.String message)Constructs a new exception with the specified detail message.LogConfigurationException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.LogConfigurationException(java.lang.Throwable cause)Constructs a new exception with the specified cause and a derived detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serializable version identifier.- See Also:
- Constant Field Values
-
cause
@Deprecated protected java.lang.Throwable cause
Deprecated.UseThrowable.getCause().The underlying cause of this exception.
-
-
Constructor Detail
-
LogConfigurationException
public LogConfigurationException()
Constructs a new exception withnullas its detail message.
-
LogConfigurationException
public LogConfigurationException(java.lang.String message)
Constructs a new exception with the specified detail message.- Parameters:
message- The detail message
-
LogConfigurationException
public LogConfigurationException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.- Parameters:
message- The detail messagecause- The underlying cause
-
LogConfigurationException
public LogConfigurationException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a derived detail message.- Parameters:
cause- The underlying cause
-
-