JavaTM 2 Platform
Standard Ed. 6

java.security
類別 InvalidAlgorithmParameterException

java.lang.Object
  繼承者 java.lang.Throwable
      繼承者 java.lang.Exception
          繼承者 java.security.GeneralSecurityException
              繼承者 java.security.InvalidAlgorithmParameterException
所有已實作的介面:
Serializable

public class InvalidAlgorithmParameterException
extends GeneralSecurityException

用於無效或不合適的演算法參數的異常。

從以下版本開始:
1.2
另請參見:
AlgorithmParameters, AlgorithmParameterSpec, 序列化表格

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

建構子詳細資訊

InvalidAlgorithmParameterException

public InvalidAlgorithmParameterException()
建構不帶詳細訊息的 InvalidAlgorithmParameterException。詳細訊息是描述此特定異常的字元串。


InvalidAlgorithmParameterException

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

參數:
msg - 詳細訊息。

InvalidAlgorithmParameterException

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

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

InvalidAlgorithmParameterException

public InvalidAlgorithmParameterException(Throwable cause)
創建帶指定 cause 和詳細訊息的 InvalidAlgorithmParameterException,詳細訊息是 (cause==null ? null :cause.toString())(它通常包含 cause 的類別和詳細訊息)。

參數:
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