| java.lang.Object | ||||
| ↳ | java.lang.Throwable | |||
| ↳ | java.lang.Exception | |||
| ↳ | java.security.GeneralSecurityException | |||
| ↳ | java.security.spec.InvalidKeySpecException | |||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an InvalidKeySpecException with no detail message.
| |||||||||||
Constructs an InvalidKeySpecException with the specified detail
message.
| |||||||||||
Creates a
InvalidKeySpecException with the specified
detail message and cause. | |||||||||||
Creates a
InvalidKeySpecException with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause). | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Throwable
| |||||||||||
From class
java.lang.Object
| |||||||||||
Constructs an InvalidKeySpecException with no detail message. A detail message is a String that describes this particular exception.
Constructs an InvalidKeySpecException with the specified detail message. A detail message is a String that describes this particular exception.
| msg | the detail message. |
|---|
Creates a InvalidKeySpecException with the specified
detail message and cause.
| message | the detail message (which is saved for later retrieval
by the getMessage() method). |
|---|---|
| cause | the cause (which is saved for later retrieval by the
getCause() method). (A null value is permitted,
and indicates that the cause is nonexistent or unknown.) |
Creates a InvalidKeySpecException with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
| cause | the cause (which is saved for later retrieval by the
getCause() method). (A null value is permitted,
and indicates that the cause is nonexistent or unknown.) |
|---|