java.security
Class KeyManagementException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.security.GeneralSecurityException
              extended by java.security.KeyException
                  extended by java.security.KeyManagementException
All Implemented Interfaces:
Serializable

public class KeyManagementException
extends KeyException

This exception is thrown whenever a problem related to the management of security keys is encountered.

See Also:
Key, Serialized Form

Constructor Summary
KeyManagementException()
          Create a new instance with no descriptive error message.
KeyManagementException(String msg)
          Create a new instance with a descriptive error message.
KeyManagementException(String s, Throwable cause)
          Create a new instance with a descriptive error message and a cause.
KeyManagementException(Throwable cause)
          Create a new instance with a cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

KeyManagementException

public KeyManagementException()
Create a new instance with no descriptive error message.


KeyManagementException

public KeyManagementException(String msg)
Create a new instance with a descriptive error message.

Parameters:
msg - the descriptive error message

KeyManagementException

public KeyManagementException(String s,
                              Throwable cause)
Create a new instance with a descriptive error message and a cause.

Parameters:
s - the descriptive error message
cause - the cause
Since:
1.5

KeyManagementException

public KeyManagementException(Throwable cause)
Create a new instance with a cause.

Parameters:
cause - the cause
Since:
1.5