|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException java.lang.reflect.UndeclaredThrowableException
public class UndeclaredThrowableException
如果代理实例的调用处理程序的 invoke
方法抛出一个经过检查的异常(不可分配给 RuntimeException
或 Error
的 Throwable
),且该异常不可分配给该方法(在代理实例上调用该方法,并将其指派到调用处理程序)的 throws
子句中声明的任何异常类,则由代理实例上的方法调用抛出此异常。
UndeclaredThrowableException
实例包含由调用处理程序抛出的经过检查的未声明异常,而且可以使用 getUndeclaredThrowable()
方法获取。UndeclaredThrowableException
扩展了 RuntimeException
,因此它是一个包装已检查异常的未经检查的异常。
从版本 1.4 开始,此异常已经更新,符合常用的异常链机制。“由调用处理程序抛出的经过检查的未声明异常”可以在构造的时候提供,并且可以通过 getUndeclaredThrowable()
方法访问,这类对象目前被认为是导致异常的原因,可以通过 Throwable.getCause()
方法以及前面提到的“遗留方法”访问它。
InvocationHandler
,
序列化表格
构造方法摘要 | |
---|---|
UndeclaredThrowableException(Throwable undeclaredThrowable) 根据指定的 Throwable 构造一个 UndeclaredThrowableException 。 |
|
UndeclaredThrowableException(Throwable undeclaredThrowable, String s) 根据指定的 Throwable 和详细消息构造 UndeclaredThrowableException 。 |
方法摘要 | |
---|---|
Throwable |
getCause() 返回此异常的原因(此 UndeclaredThrowableException 中包装的 Throwable 实例,可能为 null)。 |
Throwable |
getUndeclaredThrowable() 返回此 UndeclaredThrowableException 中包装的 Throwable 实例,它可能为 null。 |
从类 java.lang.Throwable 继承的方法 |
---|
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
public UndeclaredThrowableException(Throwable undeclaredThrowable)
Throwable
构造一个
UndeclaredThrowableException
。
undeclaredThrowable
- 抛出的经过检查的未声明异常
public UndeclaredThrowableException(Throwable undeclaredThrowable, String s)
Throwable
和详细消息构造
UndeclaredThrowableException
。
undeclaredThrowable
- 抛出的经过检查的未声明异常
s
- 详细消息
方法详细信息 |
---|
public Throwable getUndeclaredThrowable()
UndeclaredThrowableException
中包装的
Throwable
实例,它可能为
null。
该方法早于通用异常链设施。Throwable.getCause()
方法现在是获得此信息的首选方法。
public Throwable getCause()
UndeclaredThrowableException
中包装的
Throwable
实例,可能为
null)。
Throwable
中的
getCause
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。