Package com.sun.identity.xacml.common
Class XACMLException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- com.sun.identity.shared.locale.L10NMessageImpl
 - 
- com.sun.identity.saml2.common.SAML2Exception
 - 
- com.sun.identity.xacml.common.XACMLException
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 com.sun.identity.shared.locale.L10NMessage,Serializable
@SupportedAll public class XACMLException extends SAML2Exception
This class is an extension point for all XACML related exceptions. This class also handles message localization in XACML exceptions.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description XACMLException(String message)Constructs a newXACMLExceptionwith the given message.XACMLException(Throwable t)Constructs anXACMLExceptionwith givenThrowable. 
- 
Method Summary
- 
Methods inherited from class com.sun.identity.saml2.common.SAML2Exception
isRedirectionDone, setRedirectionDone 
- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
XACMLException
public XACMLException(String message)
Constructs a newXACMLExceptionwith the given message.- Parameters:
 message- message for this exception. This message can be later retrieved bygetMessage()method.
 
- 
XACMLException
public XACMLException(Throwable t)
Constructs anXACMLExceptionwith givenThrowable.- Parameters:
 t- Exception nested in the new exception.
 
 - 
 
 -