org.jcoderz.commons.logging
Class LoggingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.jcoderz.commons.logging.LoggingException
All Implemented Interfaces:
Serializable

public class LoggingException
extends RuntimeException

This exception is used for general error situations, e.g. when pooling objects used for logging fails.

See Also:
Serialized Form

Constructor Summary
LoggingException(String description)
          Constructs this and sets the description as supplied.
LoggingException(String description, Throwable cause)
          Constructs this and sets the description as supplied and the throwable causing this.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LoggingException

public LoggingException(String description)
Constructs this and sets the description as supplied.

Parameters:
description - Textual reason for this.

LoggingException

public LoggingException(String description,
                        Throwable cause)
Constructs this and sets the description as supplied and the throwable causing this.

Parameters:
description - Textual reason for this.
cause - The Throwable causing this.


Copyright 2007 The jCoderZ Project.