org.dvb.application.plugins
Class UndeclaredThrowableException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--org.dvb.application.plugins.UndeclaredThrowableException
- All Implemented Interfaces:
- java.io.Serializable
- public class UndeclaredThrowableException
- extends java.lang.RuntimeException
Thrown by a method invocation on a proxy instance if its invocation
handler's invoke
method throws a
checked exception (a Throwable
that is not assignable
to RuntimeException
or Error
) that
is not assignable to any of the exception types declared in the
throws
clause of the method that was invoked on the
proxy instance and dispatched to the invocation handler.
An UndeclaredThrowableException
instance contains
the undeclared checked exception that was thrown by the invocation
handler, and it can be retrieved with the
getUndeclaredThrowable()
method.
UndeclaredThrowableException
extends
RuntimeException
, so it is an unchecked exception
that wraps a checked exception.
- See Also:
- Serialized Form
Constructor Summary |
UndeclaredThrowableException(java.lang.Throwable undeclaredThrowable)
Constructs an UndeclaredThrowableException with the
specifed Throwable . |
UndeclaredThrowableException(java.lang.Throwable undeclaredThrowable,
java.lang.String s)
Constructs an UndeclaredThrowableException with the
specified Throwable and a detail message. |
Method Summary |
java.lang.Throwable |
getUndeclaredThrowable()
Returns the Throwable instance wrapped in this
UndeclaredThrowableException . |
void |
printStackTrace()
Prints this UndeclaredThrowableException and its
backtrace to the standard error stream. |
void |
printStackTrace(java.io.PrintStream ps)
Prints this UndeclaredThrowableException and its
backtrace to the specified PrintStream . |
void |
printStackTrace(java.io.PrintWriter pw)
Prints this UndeclaredThrowableException and its
backtrace to the specified PrintWriter . |
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 |
UndeclaredThrowableException
public UndeclaredThrowableException(java.lang.Throwable undeclaredThrowable)
- Constructs an
UndeclaredThrowableException
with the
specifed Throwable
.
- Parameters:
undeclaredThrowable
- the undeclared checked exception
that was thrown
UndeclaredThrowableException
public UndeclaredThrowableException(java.lang.Throwable undeclaredThrowable,
java.lang.String s)
- Constructs an
UndeclaredThrowableException
with the
specified Throwable
and a detail message.
- Parameters:
undeclaredThrowable
- the undeclared checked exception
that was throwns
- the detail message
getUndeclaredThrowable
public java.lang.Throwable getUndeclaredThrowable()
- Returns the
Throwable
instance wrapped in this
UndeclaredThrowableException
.
- Returns:
- the undeclared checked exception that was thrown
printStackTrace
public void printStackTrace()
- Prints this
UndeclaredThrowableException
and its
backtrace to the standard error stream.
- Overrides:
printStackTrace
in class java.lang.Throwable
printStackTrace
public void printStackTrace(java.io.PrintStream ps)
- Prints this
UndeclaredThrowableException
and its
backtrace to the specified PrintStream
.
- Overrides:
printStackTrace
in class java.lang.Throwable
- Parameters:
ps
- the PrintStream
to print the exception to
printStackTrace
public void printStackTrace(java.io.PrintWriter pw)
- Prints this
UndeclaredThrowableException
and its
backtrace to the specified PrintWriter
.
- Overrides:
printStackTrace
in class java.lang.Throwable
- Parameters:
pw
- the PrintWriter
to print this exception to