- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- java.security.InvalidParameterException
-
- All Implemented Interfaces:
-
Serializable
public class InvalidParameterException extends IllegalArgumentException
当将无效参数传递给方法时,将抛出此异常,设计为由JCA / JCE引擎类使用。- 从以下版本开始:
- 1.1
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 InvalidParameterException()
构造一个无详细消息的InvalidParameterException。InvalidParameterException(String msg)
构造具有指定详细消息的InvalidParameterException。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
InvalidParameterException
public InvalidParameterException()
构造一个无详细消息的InvalidParameterException。 详细消息是描述此特定异常的字符串。
-
InvalidParameterException
public InvalidParameterException(String msg)
构造具有指定详细消息的InvalidParameterException。 详细消息是描述此特定异常的字符串。- 参数
-
msg
- 详细信息。
-
-