FileDocCategorySizeDatePackage
LoginException.javaAPI DocAndroid 1.5 API1513Wed May 06 22:41:02 BST 2009javax.security.auth.login

LoginException

public class LoginException extends GeneralSecurityException
Base class for exceptions that are thrown when a login error occurs.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public LoginException()
Creates a new exception instance and initializes it with default values.


                    
      
        super();
    
public LoginException(String message)
Creates a new exception instance and initializes it with a given message.

param
message the error message

        super(message);
    
Methods Summary