Constructors Summary |
---|
public DigestException(String msg)Constructs a new instance of {@code DigestException} with the
given message.
super(msg);
|
public DigestException()Constructs a new instance of {@code DigestException}.
|
public DigestException(String message, Throwable cause)Constructs a new instance of {@code DigestException} with the
given message and the cause.
super(message, cause);
|
public DigestException(Throwable cause)Constructs a new instance of {@code DigestException} with the
cause.
super(cause);
|