anthill.factory
Class ConstructorException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--anthill.factory.ConstructorException
- All Implemented Interfaces:
- java.io.Serializable
- public class ConstructorException
- extends java.lang.RuntimeException
ConstructorException is a runtime exception that wraps
an exception thrown when using get() methods of Factory
- Version:
- $Revision$
- Author:
- Alberto Montresor
- See Also:
- Serialized Form
Constructor Summary |
ConstructorException(java.lang.Throwable target)
Constructs a ConstructorException with a target exception. |
ConstructorException(java.lang.Throwable target,
java.lang.String s)
Constructs a ConstructorException with a target exception
and a detail message. |
Method Summary |
java.lang.Throwable |
getTargetException()
Get the thrown target exception. |
void |
printStackTrace()
Prints the stack trace of the thrown target exception. |
void |
printStackTrace(java.io.PrintStream ps)
Prints the stack trace of the thrown target exception to the specified
print stream. |
void |
printStackTrace(java.io.PrintWriter pw)
Prints the stack trace of the thrown target exception to the
specified print writer. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ConstructorException
public ConstructorException(java.lang.Throwable target)
- Constructs a
ConstructorException
with a target exception.
ConstructorException
public ConstructorException(java.lang.Throwable target,
java.lang.String s)
- Constructs a
ConstructorException
with a target exception
and a detail message.
getTargetException
public java.lang.Throwable getTargetException()
- Get the thrown target exception.
printStackTrace
public void printStackTrace()
- Prints the stack trace of the thrown target exception.
- Overrides:
printStackTrace
in class java.lang.Throwable
printStackTrace
public void printStackTrace(java.io.PrintStream ps)
- Prints the stack trace of the thrown target exception to the specified
print stream.
- Overrides:
printStackTrace
in class java.lang.Throwable
printStackTrace
public void printStackTrace(java.io.PrintWriter pw)
- Prints the stack trace of the thrown target exception to the
specified print writer.
- Overrides:
printStackTrace
in class java.lang.Throwable