anthill
Class ResourceManagerException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--anthill.ResourceManagerException
All Implemented Interfaces:
Serializable

public class ResourceManagerException
extends RuntimeException

This exception is raised when it is impossible to create a resource manager, due to some configuration problem.

Version:
$Revision: 1.1 $
Author:
Alberto Montresor
See Also:
Serialized Form

Constructor Summary
ResourceManagerException(Throwable target)
          Constructs a ResourceManagerException with a target exception.
ResourceManagerException(Throwable target, String s)
          Constructs a ResourceManagerException with a target exception and a detail message.
 
Method Summary
 Throwable getTargetException()
          Get the thrown target exception.
 void printStackTrace()
          Prints the stack trace of the thrown target exception.
 void printStackTrace(PrintStream ps)
          Prints the stack trace of the thrown target exception to the specified print stream.
 void printStackTrace(PrintWriter pw)
          Prints the stack trace of the thrown target exception to the specified print writer.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ResourceManagerException

public ResourceManagerException(Throwable target)
Constructs a ResourceManagerException with a target exception.


ResourceManagerException

public ResourceManagerException(Throwable target,
                                String s)
Constructs a ResourceManagerException with a target exception and a detail message.

Method Detail

getTargetException

public Throwable getTargetException()
Get the thrown target exception.


printStackTrace

public void printStackTrace()
Prints the stack trace of the thrown target exception.

Overrides:
printStackTrace in class Throwable

printStackTrace

public void printStackTrace(PrintStream ps)
Prints the stack trace of the thrown target exception to the specified print stream.

Overrides:
printStackTrace in class Throwable

printStackTrace

public void printStackTrace(PrintWriter pw)
Prints the stack trace of the thrown target exception to the specified print writer.

Overrides:
printStackTrace in class Throwable