FileDocCategorySizeDatePackage
InvalidAlgorithmParameterException.javaAPI DocphoneME MR2 API (J2ME)1932Wed May 02 18:00:38 BST 2007java.security

InvalidAlgorithmParameterException

public class InvalidAlgorithmParameterException extends GeneralSecurityException
This is the exception for invalid or inappropriate algorithm parameters.
version
1.11, 01/23/03
see
java.security.spec.AlgorithmParameterSpec
since
1.2

Fields Summary
Constructors Summary
public InvalidAlgorithmParameterException()
Constructs an InvalidAlgorithmParameterException with no detail message. A detail message is a String that describes this particular exception.

	super();
    
public InvalidAlgorithmParameterException(String msg)
Constructs an InvalidAlgorithmParameterException with the specified detail message. A detail message is a String that describes this particular exception.

param
msg the detail message.

	super(msg);
    
Methods Summary