public class

LogConfigurationException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.apache.commons.logging.LogConfigurationException

Class Overview

An exception that is thrown only if a suitable LogFactory or Log instance cannot be created by the corresponding factory methods.

Summary

Fields
protected Throwable cause The underlying cause of this exception.
Public Constructors
LogConfigurationException()
Construct a new exception with null as its detail message.
LogConfigurationException(String message)
Construct a new exception with the specified detail message.
LogConfigurationException(Throwable cause)
Construct a new exception with the specified cause and a derived detail message.
LogConfigurationException(String message, Throwable cause)
Construct a new exception with the specified detail message and cause.
Public Methods
Throwable getCause()
Return the underlying cause of this exception (if any).
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Fields

protected Throwable cause

The underlying cause of this exception.

Public Constructors

public LogConfigurationException ()

Construct a new exception with null as its detail message.

public LogConfigurationException (String message)

Construct a new exception with the specified detail message.

Parameters
message The detail message

public LogConfigurationException (Throwable cause)

Construct a new exception with the specified cause and a derived detail message.

Parameters
cause The underlying cause

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

Public Methods

public Throwable getCause ()

Return the underlying cause of this exception (if any).