Package org.apache.juli.logging
Class LogConfigurationException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.juli.logging.LogConfigurationException
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class LogConfigurationException extends java.lang.RuntimeExceptionAn exception that is thrown only if a suitable LogFactoryorLoginstance cannot be created by the corresponding factory methods.- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description LogConfigurationException()Construct a new exception withnullas 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.
 
- 
- 
- 
Constructor Detail- 
LogConfigurationExceptionpublic LogConfigurationException() Construct a new exception withnullas its detail message.
 - 
LogConfigurationExceptionpublic LogConfigurationException(java.lang.String message) Construct a new exception with the specified detail message.- Parameters:
- message- The detail message
 
 - 
LogConfigurationExceptionpublic LogConfigurationException(java.lang.Throwable cause) Construct a new exception with the specified cause and a derived detail message.- Parameters:
- cause- The underlying cause
 
 - 
LogConfigurationExceptionpublic LogConfigurationException(java.lang.String message, java.lang.Throwable cause)Construct a new exception with the specified detail message and cause.- Parameters:
- message- The detail message
- cause- The underlying cause
 
 
- 
 
-