|
JavaTM 2 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 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。