FileDocCategorySizeDatePackage
UnrecoverableKeyException.javaAPI DocJava SE 6 API948Tue Jun 10 00:25:46 BST 2008java.security

UnrecoverableKeyException

public class UnrecoverableKeyException extends UnrecoverableEntryException
This exception is thrown if a key in the keystore cannot be recovered.
version
1.12, 11/17/05
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