java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
java.security.InvalidAlgorithmParameterException
- 所有已实现的接口:
Serializable
这是无效或不适当的算法参数的异常。
- 自从:
- 1.2
- 参见:
-
构造方法总结
构造方法构造方法描述构造一个没有详细信息的InvalidAlgorithmParameterException
使用指定的详细消息构造一个InvalidAlgorithmParameterException
。InvalidAlgorithmParameterException
(String message, Throwable cause) 使用指定的详细消息和原因创建InvalidAlgorithmParameterException
。创建具有指定原因的InvalidAlgorithmParameterException
和(cause==null ? null : cause.toString())
的详细消息(通常包含cause
的类和详细消息)。 -
方法总结
在类 java.lang.Throwable 中声明的方法
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
构造方法详细信息
-
InvalidAlgorithmParameterException
public InvalidAlgorithmParameterException()构造一个没有详细消息的InvalidAlgorithmParameterException
。详细消息是描述此特定异常的String
。 -
InvalidAlgorithmParameterException
使用指定的详细消息构造一个InvalidAlgorithmParameterException
。详细消息是描述此特定异常的String
。- 参数:
msg
- 详细信息。
-
InvalidAlgorithmParameterException
使用指定的详细消息和原因创建InvalidAlgorithmParameterException
。- 参数:
message
- 详细消息(保存以供以后通过Throwable.getMessage()
方法检索)。cause
- 原因(保存以供以后通过Throwable.getCause()
方法检索)。 (允许使用null
值,表示原因不存在或未知。)- 自从:
- 1.5
-
InvalidAlgorithmParameterException
创建具有指定原因的InvalidAlgorithmParameterException
和(cause==null ? null : cause.toString())
的详细消息(通常包含cause
的类和详细消息)。- 参数:
cause
- 原因(保存以供以后通过Throwable.getCause()
方法检索)。 (允许使用null
值,表示原因不存在或未知。)- 自从:
- 1.5
-