public class InvalidAlgorithmParameterException
extends GeneralSecurityException
java.lang.Object | ||||
↳ | java.lang.Throwable | |||
↳ | java.lang.Exception | |||
↳ | java.security.GeneralSecurityException | |||
↳ | java.security.InvalidAlgorithmParameterException |
这是无效或不适当的算法参数的例外。
Public constructors |
|
---|---|
InvalidAlgorithmParameterException() 构造一个InvalidAlgorithmParameterException,但不包含详细消息。 |
|
InvalidAlgorithmParameterException(String msg) 用指定的详细消息构造一个InvalidAlgorithmParameterException。 |
|
InvalidAlgorithmParameterException(String message, Throwable cause) 用指定的详细信息和原因创建一个 |
|
InvalidAlgorithmParameterException(Throwable cause) 创建 |
Inherited methods |
|
---|---|
From class java.lang.Throwable
|
|
From class java.lang.Object
|
InvalidAlgorithmParameterException ()
构造一个InvalidAlgorithmParameterException,但不包含详细消息。 详细消息是描述此特定异常的字符串。
InvalidAlgorithmParameterException (String msg)
用指定的详细消息构造一个InvalidAlgorithmParameterException。 详细消息是描述此特定异常的字符串。
Parameters | |
---|---|
msg |
String : the detail message. |
InvalidAlgorithmParameterException (String message, Throwable cause)
用指定的详细信息和原因创建一个 InvalidAlgorithmParameterException
。
Parameters | |
---|---|
message |
String : the detail message (which is saved for later retrieval by the getMessage() method). |
cause |
Throwable : the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |
InvalidAlgorithmParameterException (Throwable cause)
创建 InvalidAlgorithmParameterException
与指定的原因和 (cause==null ? null : cause.toString())详细消息(它通常包含的 cause类和详细消息)。
Parameters | |
---|---|
cause |
Throwable : the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |