FileDocCategorySizeDatePackage
InvalidParameterSpecException.javaAPI DocJava SE 5 API1217Fri Aug 26 14:57:18 BST 2005java.security.spec

InvalidParameterSpecException

public class InvalidParameterSpecException extends GeneralSecurityException
This is the exception for invalid parameter specifications.
author
Jan Luehe
version
1.15, 12/19/03
see
java.security.AlgorithmParameters
see
AlgorithmParameterSpec
see
DSAParameterSpec
since
1.2

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public InvalidParameterSpecException()
Constructs an InvalidParameterSpecException with no detail message. A detail message is a String that describes this particular exception.


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