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

AccountLockedException

public class AccountLockedException extends AccountException
Signals that an account was locked.

This exception may be thrown by a LoginModule if it determines that authentication is being attempted on a locked account.

version
1.2, 12/19/03
since
1.5

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


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