java.security
Class UnrecoverableKeyException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.security.GeneralSecurityException
                    |
                    +--java.security.UnrecoverableKeyException
All Implemented Interfaces:
Serializable

public class UnrecoverableKeyException
extends GeneralSecurityException

Untamed: This exception is thrown if a key in the keystore cannot be recovered.

Since:
1.2
Version:
1.7, 12/03/01
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
UnrecoverableKeyException()
          Enabled: Constructs an UnrecoverableKeyException with no detail message.
UnrecoverableKeyException(String msg)
          Enabled: Constructs an UnrecoverableKeyException with the specified detail message, which provides more information about why this exception has been thrown.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnrecoverableKeyException

public UnrecoverableKeyException()
Enabled: Constructs an UnrecoverableKeyException with no detail message.


UnrecoverableKeyException

public UnrecoverableKeyException(String msg)
Enabled: Constructs an UnrecoverableKeyException with the specified detail message, which provides more information about why this exception has been thrown.

Parameters:
msg - the detail message.


comments?