FileDocCategorySizeDatePackage
UnrecoverableKeyException.javaAPI DocJava SE 5 API945Fri Aug 26 14:57:16 BST 2005java.security

UnrecoverableKeyException

public class UnrecoverableKeyException extends GeneralSecurityException
This exception is thrown if a key in the keystore cannot be recovered.
version
1.10, 12/19/03
since
1.2

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public UnrecoverableKeyException()
Constructs an UnrecoverableKeyException with no detail message.


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

param
msg the detail message.

       super(msg);
    
Methods Summary