FileDocCategorySizeDatePackage
PolicyContextException.javaAPI DocGlassfish v2 API4656Fri May 04 22:36:00 BST 2007javax.security.jacc

PolicyContextException

public class PolicyContextException extends Exception
This checked exception is thrown by implementations of the javax.security.jacc.PolicyConfiguration Interface, the javax.security.jacc.PolicyConfigurationFactory abstract class, the javax.security.jacc.PolicyContext utility class, and implementations of the javax.security.jacc.PolicyContextException Interface.

This exception is used by javax.security.jacc implementation classes to rethrow checked exceptions ocurring within an implementation that are not declared by the interface or class being implemented.

see
java.lang.Exception
see
javax.security.jacc.PolicyConfiguration
see
javax.security.jacc.PolicyConfigurationFactory
see
javax.security.jacc.PolicyContext
see
javax.security.jacc.PolicyContextHandler
author
Ron Monzillo
author
Gary Ellison

Fields Summary
Constructors Summary
public PolicyContextException()
Constructs a new PolicyContextException with null as its detail message. describing the cause of the exception.

        super();
    
public PolicyContextException(String msg)
Constructs a new PolicyContextException with the specified detail message

param
msg - a String containing a detail message describing the cause of the exception.

        super(msg);
    
public PolicyContextException(String msg, Throwable cause)
Constructs a new PolicyContextException with the specified detail message and cause. The cause will be encapsulated in the constructed exception.

param
msg - a String containing a detail message describing the cause of the exception.
param
cause - the Throwable that is "causing" this exception to be constructed. A null value is permitted, and the value passed through this parameter may subsequently be retrieved by calling getCause() on the constructed exception.

        super(msg,cause);
    
public PolicyContextException(Throwable cause)
Constructs a new PolicyContextException with the specified cause. The cause will be encapsulated in the constructed exception.

param
cause - the Throwable that is "causing" this exception to be constructed. A null value is permitted, and the value passed through this parameter may subsequently be retrieved by calling getCause() on the constructed exception.

        super(cause);
    
Methods Summary