|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.reflect.InvocationTargetException
public class InvocationTargetException
InvocationTargetException 是一种包装由调用方法或构造方法所抛出异常的经过检查的异常。
从版本 1.4 开始,此异常已经更新,符合通用异常链机制。“目标异常”是在构造的时候提供的,可以通过 getTargetException()
方法访问,这类对象目前被认为是导致异常的原因,可以通过 Throwable.getCause()
方法以及前面提到的“遗留方法”访问它。
Method
,
Constructor
,
序列化表格构造方法摘要 | |
---|---|
protected |
InvocationTargetException()
构造以 null 作为目标异常的 InvocationTargetException 。 |
|
InvocationTargetException(Throwable target)
构造带目标异常的 InvocationTargetException。 |
|
InvocationTargetException(Throwable target,
String s)
构造带目标异常和详细消息的 InvocationTargetException。 |
方法摘要 | |
---|---|
Throwable |
getCause()
返回此异常的原因(抛出的目标异常,可能为 null)。 |
Throwable |
getTargetException()
获取抛出的目标异常。 |
从类 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 |
构造方法详细信息 |
---|
protected InvocationTargetException()
null
作为目标异常的 InvocationTargetException
。
public InvocationTargetException(Throwable target)
target
- 目标异常public InvocationTargetException(Throwable target, String s)
target
- 目标异常s
- 详细消息方法详细信息 |
---|
public Throwable getTargetException()
该方法早于通用异常链设施。Throwable.getCause()
方法现在是获得此信息的首选方法。
public Throwable getCause()
Throwable
中的 getCause
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。