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
This class is an extension point for all XACML related exceptions.
This class also handles message localization in XACML exceptions.
- See Also:
-
Constructor Summary
ConstructorDescriptionXACMLException
(String message) Constructs a newXACMLException
with the given message.Constructs anXACMLException
with givenThrowable
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XACMLException
Constructs a newXACMLException
with the given message.- Parameters:
message
- message for this exception. This message can be later retrieved bygetMessage()
method.
-
XACMLException
Constructs anXACMLException
with givenThrowable
.- Parameters:
t
- Exception nested in the new exception.
-