Constructors Summary |
---|
public KeyChainException()Constructs a new {@code KeyChainException} that includes the
current stack trace.
|
public KeyChainException(String detailMessage)Constructs a new {@code KeyChainException} with the current stack
trace and the specified detail message.
super(detailMessage);
|
public KeyChainException(String message, Throwable cause)Constructs a new {@code KeyChainException} with the current stack
trace, the specified detail message and the specified cause.
super(message, cause);
|
public KeyChainException(Throwable cause)Constructs a new {@code KeyChainException} with the current stack
trace and the specified cause.
super((cause == null ? null : cause.toString()), cause);
|