public class InvalidAlgorithmParameterException extends GeneralSecurityException
AlgorithmParameters , AlgorithmParameterSpec , Serialized Form
| Constructor and Description |
|---|
InvalidAlgorithmParameterException()
构造一个InvalidAlgorithmParameterException,没有详细信息。
|
InvalidAlgorithmParameterException(String msg)
使用指定的详细消息构造InvalidAlgorithmParameterException。
|
InvalidAlgorithmParameterException(String message, Throwable cause)
创建
InvalidAlgorithmParameterException带指定详细消息和原因。
|
InvalidAlgorithmParameterException(Throwable cause)
创建
InvalidAlgorithmParameterException与指定的原因和详细消息
(cause==null ? null : cause.toString()) (它通常包含的类和详细消息
cause )。
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic InvalidAlgorithmParameterException()
public InvalidAlgorithmParameterException(String msg)
msg - 详细信息。
public InvalidAlgorithmParameterException(String message, Throwable cause)
InvalidAlgorithmParameterException的详细消息和原因的InvalidAlgorithmParameterException。
message - 详细信息(保存以供稍后通过
Throwable.getMessage()方法
检索 )。
cause - 原因(由Throwable.getCause()方法保存供以后检索)。
( null A null值,并表示原因不存在或未知。)
public InvalidAlgorithmParameterException(Throwable cause)
InvalidAlgorithmParameterException与指定的原因和详细消息
(cause==null ? null : cause.toString()) (它通常包含的类和详细消息
cause )。
cause - 原因(由Throwable.getCause()方法保存供以后检索)。
(A null值,并表示原因不存在或未知。)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.