FileDocCategorySizeDatePackage
InvalidAlgorithmParameterException.javaAPI DocphoneME MR2 API (J2ME)1834Wed May 02 18:00:24 BST 2007com.sun.midp.crypto

InvalidAlgorithmParameterException

public class InvalidAlgorithmParameterException extends GeneralSecurityException
This is the exception for invalid or inappropriate algorithm parameters.

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