FileDocCategorySizeDatePackage
BadRealmException.javaAPI DocGlassfish v2 API2738Fri May 04 22:35:26 BST 2007com.sun.enterprise.security.auth.realm

BadRealmException

public class BadRealmException extends Exception
Exception thrown when a Realm is found to be corrupted for some reason. This usually reflects some sort of problem with data structures such as those holding information about users, groups, or ACLs.
author
Harish Prabandham

Fields Summary
Constructors Summary
public BadRealmException(String info)
Constructs the exception, with descriptive information.

param
info describes the problem with the realm

 super (info); 
public BadRealmException()

        super();
    
public BadRealmException(Throwable cause)

        super(cause);
    
public BadRealmException(String info, Throwable cause)

        super(info, cause);
    
Methods Summary