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