|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException java.lang.IllegalStateException
public class IllegalStateException
在非法或不適當的時間調用方法時產生的信號。換句話說,即 Java 環境或 Java 應用程序沒有處於請求操作所要求的適當狀態下。
建構子摘要 | |
---|---|
IllegalStateException()
建構不帶詳細訊息的 IllegalStateException。 |
|
IllegalStateException(String s)
建構帶指定詳細訊息的 IllegalStateException。 |
|
IllegalStateException(String message,
Throwable cause)
建構一個新異常,它帶有指定的詳細訊息和原因。 |
|
IllegalStateException(Throwable cause)
建構一個新異常,它帶有指定的原因和 (cause==null ? null :cause.toString()) 的詳細訊息(通常包含 cause 的類別和詳細訊息)。 |
方法摘要 |
---|
從類別 java.lang.Throwable 繼承的方法 |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
建構子詳細資訊 |
---|
public IllegalStateException()
public IllegalStateException(String s)
s
- 套件含詳細訊息的 Stringpublic IllegalStateException(String message, Throwable cause)
注意,與 cause
相關的詳細訊息不是 自動合併到這個異常的詳細訊息中的。
message
- 詳細訊息(保存此訊息,以便以後通過 Throwable.getMessage()
方法獲取它)。cause
- 原因(保存此原因,以便以後通過 Throwable.getCause()
方法獲取它)。(允許使用 null 值,
指出原因是不存在的或是未知的。)public IllegalStateException(Throwable cause)
PrivilegedActionException
)的套件裝器相同的異常是有用的。
cause
- 原因(保存此原因,以便以後通過 Throwable.getCause()
方法獲取它)。(允許使用 null 值,指出原因是不存在的或是未知的。)
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。