java.security

Class DigestException

public class DigestException extends GeneralSecurityException

This exception indicates that a generic message digest exception has occurred.

UNKNOWN: updated to 1.4

Constructor Summary
DigestException()
Create a new instance with no descriptive message.
DigestException(String msg)
Create a new instance with a descriptive error message.
DigestException(String s, Throwable cause)
Create a new instance with a descriptive error message and a cause.
DigestException(Throwable cause)
Create a new instance with a cause.

Constructor Detail

DigestException

public DigestException()
Create a new instance with no descriptive message.

DigestException

public DigestException(String msg)
Create a new instance with a descriptive error message.

Parameters: msg the descriptive message

DigestException

public DigestException(String s, Throwable cause)
Create a new instance with a descriptive error message and a cause.

Parameters: s the descriptive error message cause the cause

Since: 1.5

DigestException

public DigestException(Throwable cause)
Create a new instance with a cause.

Parameters: cause the cause

Since: 1.5