FileDocCategorySizeDatePackage
CredentialNotFoundException.javaAPI DocJava SE 5 API1150Fri Aug 26 14:57:48 BST 2005javax.security.auth.login

CredentialNotFoundException

public class CredentialNotFoundException extends CredentialException
Signals that a credential was not found.

This exception may be thrown by a LoginModule if it is unable to locate a credential necessary to perform authentication.

version
1.2, 12/19/03
since
1.5

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public CredentialNotFoundException()
Constructs a CredentialNotFoundException with no detail message. A detail message is a String that describes this particular exception.


                           
      
	super();
    
public CredentialNotFoundException(String msg)
Constructs a CredentialNotFoundException with the specified detail message. A detail message is a String that describes this particular exception.

param
msg the detail message.

	super(msg);
    
Methods Summary