|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.lang.Throwable java.lang.Error java.lang.LinkageError java.lang.ExceptionInInitializerError
public class ExceptionInInitializerError
靜態初始化程序中發生意外異常的信號。拋出 ExceptionInInitializerError
表明在計算靜態初始值或靜態變數的初始值期間發生異常。
從版本 1.4 開始,這個異常已經更新過,符合通用異常鏈機制。“保存的 throwable 物件”可能是在建構的時候提供的,並且可以通過 getException()
方法來存取,這類別物件目前被認為是導致異常的原因,可以通過 Throwable.getCause()
方法以及前面提到的“遺留方法”存取它。
建構子摘要 | |
---|---|
ExceptionInInitializerError()
建構一個 ExceptionInInitializerError ,使用 null 作為其詳細訊息字元串,並且不使用任何保存的 throwable 物件。 |
|
ExceptionInInitializerError(String s)
建構帶指定詳細訊息的 ExceptionInInitializerError。 |
|
ExceptionInInitializerError(Throwable thrown)
保存對拋出的 Throwable 物件的參考,以便以後通過 getException() 方法對其進行獲取,通過這種方式建構一個新的 ExceptionInInitializerError 類別。 |
方法摘要 | |
---|---|
Throwable |
getCause()
返回導致該錯誤的原因(導致發生此錯誤的靜態初始化期間發生的異常)。 |
Throwable |
getException()
返回靜態初始化期間發生的異常,該異常導致發生此錯誤。 |
從類別 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 ExceptionInInitializerError()
ExceptionInInitializerError
,使用 null
作為其詳細訊息字元串,並且不使用任何保存的 throwable 物件。詳細訊息是描述這個特定異常的 String。
public ExceptionInInitializerError(Throwable thrown)
Throwable
物件的參考,以便以後通過 getException()
方法對其進行獲取,通過這種方式建構一個新的 ExceptionInInitializerError
類別。 詳細訊息字元串被設置為 null
。
thrown
- 拋出的異常public ExceptionInInitializerError(String s)
Throwable.getMessage()
方法對其進行獲取。沒有任何保存的 throwable 物件。
s
- 詳細訊息方法詳細資訊 |
---|
public Throwable getException()
該方法早於通用異常鏈設施。 Throwable.getCause()
方法現在首先被用來獲得該資訊。
ExceptionInInitializerError
的已保存的 throwable 物件;如果此 ExceptionInInitializerError
沒有任何已保存的 throwable 物件,則返回 null
。public Throwable getCause()
Throwable
中的 getCause
null
。
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。