FileDocCategorySizeDatePackage
AuthException.javaAPI DocGlassfish v2 API2697Fri May 04 22:36:10 BST 2007javax.security.auth.message

AuthException

public class AuthException extends LoginException
A generic authentication exception.
version
%I%, %G%

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


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