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

UnrecoverableEntryException

public class UnrecoverableEntryException extends GeneralSecurityException
This exception is thrown if an entry in the keystore cannot be recovered.
version
1.2, 12/19/03
since
1.5

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


                
      
	super();
    
public UnrecoverableEntryException(String msg)
Constructs an UnrecoverableEntryException 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