java.security
Class InvalidAlgorithmParameterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.security.GeneralSecurityException
              extended by java.security.InvalidAlgorithmParameterException
All Implemented Interfaces:
Serializable

public class InvalidAlgorithmParameterException
extends GeneralSecurityException

Thrown for an invalid security algorithm parameter.

Since:
1.2
See Also:
Serialized Form

Constructor Summary
InvalidAlgorithmParameterException()
          Construct an exception with no message.
InvalidAlgorithmParameterException(String msg)
          Construct an exception with a message.
InvalidAlgorithmParameterException(String s, Throwable cause)
          Create a new instance with a descriptive error message and a cause.
InvalidAlgorithmParameterException(Throwable cause)
          Create a new instance with a cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidAlgorithmParameterException

public InvalidAlgorithmParameterException()
Construct an exception with no message.


InvalidAlgorithmParameterException

public InvalidAlgorithmParameterException(String msg)
Construct an exception with a message.

Parameters:
msg - the message

InvalidAlgorithmParameterException

public InvalidAlgorithmParameterException(String s,
                                          Throwable cause)
Create a new instance with a descriptive error message and a cause.

Parameters:
s - the descriptive error message
cause - the cause
Since:
1.5

InvalidAlgorithmParameterException

public InvalidAlgorithmParameterException(Throwable cause)
Create a new instance with a cause.

Parameters:
cause - the cause
Since:
1.5