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

DigestException

public class DigestException extends GeneralSecurityException
This is the generic Message Digest exception.

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

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