java.security
Class KeyException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.security.GeneralSecurityException
|
+--java.security.KeyException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- InvalidKeyException, KeyManagementException
- public class KeyException
- extends GeneralSecurityException
Untamed: This is the basic key exception.
- Version:
- 1.15 01/12/03
- Author:
- Benjamin Renaud
- See Also:
Key
,
InvalidKeyException
,
KeyManagementException
,
Serialized Form
Fields inherited from class java.lang.Exception |
|
Fields inherited from class java.lang.Throwable |
|
Constructor Summary |
KeyException()
Enabled: Constructs a KeyException with no detail message. |
KeyException(String msg)
Enabled: Constructs a KeyException with the specified detail message. |
Methods inherited from class java.lang.Throwable |
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap |
KeyException
public KeyException()
- Enabled: Constructs a KeyException with no detail message. A detail
message is a String that describes this particular exception.
KeyException
public KeyException(String msg)
- Enabled: Constructs a KeyException with the specified detail message.
A detail message is a String that describes this particular
exception.
- Parameters:
msg
- the detail message.
comments?