FileDocCategorySizeDatePackage
FailureException.javaAPI DocGlassfish v2 API2841Fri May 04 22:35:42 BST 2007com.sun.enterprise.security.jauth

FailureException

public class FailureException extends AuthException
Authentication failed.

This exception is thrown by an AuthModule when authentication failed. This exception is only thrown when the module has updated the response message in the AuthParam.

version
%I%, %G%

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


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