|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.lang.Throwable java.lang.Exception javax.xml.crypto.KeySelectorException
public class KeySelectorException
指示由 KeySelector
拋出的異常條件。
KeySelectorException
可以包含一個 cause:即另一個導致拋出此 KeySelectorException
的 throwable。
建構子摘要 | |
---|---|
KeySelectorException()
建構用 null 作為其詳細訊息的新 KeySelectorException 。 |
|
KeySelectorException(String message)
建構帶指定詳細資訊的新 KeySelectorException 。 |
|
KeySelectorException(String message,
Throwable cause)
建構帶指定詳細訊息和 cause 的新 KeySelectorException 。 |
|
KeySelectorException(Throwable cause)
建構帶指定的 cause 和詳細訊息 (cause==null ? null :cause.toString()) 的新 KeySelectorException (它通常包含 cause 的類別和詳細訊息)。 |
方法摘要 | |
---|---|
Throwable |
getCause()
返回此 KeySelectorException 的 cause,如果 cause 不存在或未知,則返回 null 。 |
void |
printStackTrace()
將此 KeySelectorException 、它的追蹤 (backtrace) 和 cause 的追蹤列印到標準錯誤串流中。 |
void |
printStackTrace(PrintStream s)
將此 KeySelectorException 、它的追蹤和 cause 追蹤列印到指定的列印串流。 |
void |
printStackTrace(PrintWriter s)
將此 KeySelectorException 、它的追蹤和 cause 追蹤列印到指定列印編寫器。 |
從類別 java.lang.Throwable 繼承的方法 |
---|
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
建構子詳細資訊 |
---|
public KeySelectorException()
null
作為其詳細訊息的新 KeySelectorException
。
public KeySelectorException(String message)
KeySelectorException
。
message
- 詳細訊息public KeySelectorException(String message, Throwable cause)
KeySelectorException
。
注意,與 cause
相關的詳細訊息不是自動合併到此異常的詳細訊息中的。
message
- 詳細訊息cause
- cause(允許為 null 值,指示 cause 不存在或未知。)public KeySelectorException(Throwable cause)
(cause==null ? null :cause.toString())
的新 KeySelectorException
(它通常包含 cause
的類別和詳細訊息)。
cause
- cause(允許為 null 值,指示 cause 不存在或未知。)方法詳細資訊 |
---|
public Throwable getCause()
KeySelectorException
的 cause,如果 cause 不存在或未知,則返回 null
。(cause 是導致拋出此 KeySelectorException
的 throwable。)
Throwable
中的 getCause
KeySelectorException
的 cause,如果 cause 不存在或未知,則返回 null
。public void printStackTrace()
KeySelectorException
、它的追蹤 (backtrace) 和 cause 的追蹤列印到標準錯誤串流中。
Throwable
中的 printStackTrace
public void printStackTrace(PrintStream s)
KeySelectorException
、它的追蹤和 cause 追蹤列印到指定的列印串流。
Throwable
中的 printStackTrace
s
- 用於輸出的 PrintStream
public void printStackTrace(PrintWriter s)
KeySelectorException
、它的追蹤和 cause 追蹤列印到指定列印編寫器。
Throwable
中的 printStackTrace
s
- 用於輸出的 PrintWriter
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。