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

PendingException

public class PendingException extends AuthException
Authentication is pending.

This exception can be thrown by an AuthModule issuing a challenge, for example.

version
%I%, %G%

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


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