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