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

InvalidKeySpecException

public class InvalidKeySpecException extends GeneralSecurityException
This is the exception for invalid key specifications.

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

	super();
    
public InvalidKeySpecException(String msg)
Constructs an InvalidKeySpecException 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