|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--java.lang.RuntimeException | +--java.lang.reflect.UndeclaredThrowableException
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.
InvocationHandler
, Serialized FormConstructor Summary | |
UndeclaredThrowableException(Throwable undeclaredThrowable)
Constructs an UndeclaredThrowableException with the
specifed Throwable . |
|
UndeclaredThrowableException(Throwable undeclaredThrowable,
String s)
Constructs an UndeclaredThrowableException with the
specified Throwable and a detail message. |
Method Summary | |
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(PrintStream ps)
Prints this UndeclaredThrowableException and its
backtrace to the specified PrintStream . |
void |
printStackTrace(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 |
Constructor Detail |
public UndeclaredThrowableException(Throwable undeclaredThrowable)
UndeclaredThrowableException
with the
specifed Throwable
.undeclaredThrowable
- the undeclared checked exception
that was thrownpublic UndeclaredThrowableException(Throwable undeclaredThrowable, String s)
UndeclaredThrowableException
with the
specified Throwable
and a detail message.undeclaredThrowable
- the undeclared checked exception
that was throwns
- the detail messageMethod Detail |
public Throwable getUndeclaredThrowable()
Throwable
instance wrapped in this
UndeclaredThrowableException
.public void printStackTrace()
UndeclaredThrowableException
and its
backtrace to the standard error stream.printStackTrace
in class Throwable
java.lang.Throwable
System.err
public void printStackTrace(PrintStream ps)
UndeclaredThrowableException
and its
backtrace to the specified PrintStream
.printStackTrace
in class Throwable
java.lang.Throwable
s
- PrintStream
to use for outputpublic void printStackTrace(PrintWriter pw)
UndeclaredThrowableException
and its
backtrace to the specified PrintWriter
.printStackTrace
in class Throwable
java.lang.Throwable
s
- PrintWriter
to use for output
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.