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 LogFactory or Log instance cannot be created by the corresponding factory methods.

Version:
$Revision: 155426 $ $Date: 2005-02-26 13:10:49 +0000 (Sat, 26 Feb 2005) $
Author:
Craig R. McClanahan
See Also:
Serialized Form
  • Field Details

    • cause

      protected Throwable cause
      The underlying cause of this exception.
  • Constructor Details

    • LogConfigurationException

      public LogConfigurationException()
      Construct a new exception with null as 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
    • LogConfigurationException

      public LogConfigurationException​(String message, Throwable cause)
      Construct a new exception with the specified detail message and cause.
      Parameters:
      message - The detail message
      cause - The underlying cause
  • Method Details

    • getCause

      public Throwable getCause()
      Return the underlying cause of this exception (if any).
      Overrides:
      getCause in class Throwable