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

LoginException

public class LoginException extends GeneralSecurityException
This is the basic login exception.
version
1.16, 12/19/03
see
javax.security.auth.login.LoginContext

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


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