|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.lang.Throwable java.lang.Exception java.security.GeneralSecurityException java.security.cert.CertificateException java.security.cert.CertificateParsingException
public class CertificateParsingException
證書解析異常。只要解析了無效的 DER 編碼證書或者在該 Certificate 中發現了不受支持的 DER 功能,就拋出此異常。
建構子摘要 | |
---|---|
CertificateParsingException()
建構不帶詳細訊息的 CertificateParsingException。 |
|
CertificateParsingException(String message)
建構帶指定詳細訊息的 CertificateParsingException。 |
|
CertificateParsingException(String message,
Throwable cause)
創建帶指定詳細訊息和原因的 CertificateParsingException 。 |
|
CertificateParsingException(Throwable cause)
創建帶指定原因和詳細訊息的 CertificateParsingException ,詳細訊息是 (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 CertificateParsingException()
public CertificateParsingException(String message)
message
- 詳細訊息。public CertificateParsingException(String message, Throwable cause)
CertificateParsingException
。
message
- 詳細訊息(保存此訊息,以便以後通過 Throwable.getMessage()
方法獲取它)。cause
- cause(保存此 cause,以便以後通過 Throwable.getCause()
方法獲取它)。(允許使用 null 值,指出 cause 是不存在的或是未知的。)public CertificateParsingException(Throwable cause)
CertificateParsingException
,詳細訊息是 (cause==null ? null :cause.toString())(它通常包含 cause 的類別和詳細訊息)。
cause
- cause(保存此 cause,以便以後通過 Throwable.getCause()
方法獲取它)。(允許使用 null 值,指出 cause 是不存在的或是未知的。)
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。