JavaTM 2 Platform
Standard Ed. 6

java.security
類別 GeneralSecurityException

java.lang.Object
  繼承者 java.lang.Throwable
      繼承者 java.lang.Exception
          繼承者 java.security.GeneralSecurityException
所有已實作的介面:
Serializable
直接已知子類別:
BadPaddingException, CertificateException, CertPathBuilderException, CertPathValidatorException, CertStoreException, CRLException, DigestException, ExemptionMechanismException, IllegalBlockSizeException, InvalidAlgorithmParameterException, InvalidKeySpecException, InvalidParameterSpecException, KeyException, KeyStoreException, LoginException, NoSuchAlgorithmException, NoSuchPaddingException, NoSuchProviderException, ShortBufferException, SignatureException, UnrecoverableEntryException

public class GeneralSecurityException
extends Exception

GeneralSecurityException 類別是一個一般安全異常類別,可以為所有從其擴展的與安全有關的異常類別提供型別安全。

另請參見:
序列化表格

建構子摘要
GeneralSecurityException()
          建構不帶詳細訊息的 GeneralSecurityException。
GeneralSecurityException(String msg)
          建構帶指定詳細訊息的 GeneralSecurityException。
GeneralSecurityException(String message, Throwable cause)
          創建帶指定詳細訊息和 cause 的 GeneralSecurityException
GeneralSecurityException(Throwable cause)
          用指定的原因和詳細訊息創建一個 GeneralSecurityException,詳細訊息是 (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
 

建構子詳細資訊

GeneralSecurityException

public GeneralSecurityException()
建構不帶詳細訊息的 GeneralSecurityException。


GeneralSecurityException

public GeneralSecurityException(String msg)
建構帶指定詳細訊息的 GeneralSecurityException。詳細訊息是描述此特定異常的字元串。

參數:
msg - 詳細訊息。

GeneralSecurityException

public GeneralSecurityException(String message,
                                Throwable cause)
創建帶指定詳細訊息和 cause 的 GeneralSecurityException

參數:
message - 詳細訊息(保存此訊息,以便以後通過 Throwable.getMessage() 方法獲取它)。
cause - cause(保存它以便以後通過 Throwable.getCause() 方法獲取)。(允許使用 null 值,指示 cause 不存在或未知。)
從以下版本開始:
1.5

GeneralSecurityException

public GeneralSecurityException(Throwable cause)
用指定的原因和詳細訊息創建一個 GeneralSecurityException,詳細訊息是 (cause==null ? null:cause.toString())(它通常包含該類別和 cause 的詳細訊息)。

參數:
cause - cause(保存它以便以後通過 Throwable.getCause() 方法獲取)。(允許使用 null 值,指示 cause 不存在或未知。)
從以下版本開始:
1.5

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only