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

AccountNotFoundException

public class AccountNotFoundException extends AccountException
Signals that an account was not found.

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

version
1.2, 12/19/03
since
1.5

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


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