public class PolicyEvaluationException extends PolicyException
PolicyEvaluationException
is the exception
for the error happening in policy request XML parsing and policy
request evaluation.Constructor and Description |
---|
PolicyEvaluationException(String message)
Constructs an instance of the
PolicyEvaluationException . |
PolicyEvaluationException(String message,
String reqId)
Constructs an instance of the
PolicyEvaluationException
class. |
PolicyEvaluationException(String rbName,
String errorCode,
Object[] args,
Throwable nestedException)
Constructs an instance of
PolicyEvaluationException
to pass the localized error message
At this level, the locale of the caller is not known and it is
not possible to throw localized error message at this level. |
PolicyEvaluationException(String rbName,
String errorCode,
Object[] args,
Throwable nestedException,
String reqId)
Constructs an instance of
PolicyEvaluationException
to pass the localized error message
At this level, the locale of the caller is not known and it is
not possible to throw localized error message at this level. |
PolicyEvaluationException(String message,
Throwable nestedException)
Constructs an instance of the
PolicyEvaluationException
class. |
PolicyEvaluationException(String message,
Throwable nestedException,
String reqId)
Constructs an instance of the
PolicyEvaluationException
class. |
PolicyEvaluationException(Throwable nestedException)
Constructs an instance of the
PolicyEvaluationException |
PolicyEvaluationException(Throwable nestedException,
String reqId)
Constructs an instance of the
PolicyEvaluationException
class. |
Modifier and Type | Method and Description |
---|---|
String |
getRequestId()
Returns the request Id.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public PolicyEvaluationException(String message)
PolicyEvaluationException
.message
- The message provided by the object that is throwing the
exception.public PolicyEvaluationException(Throwable nestedException)
PolicyEvaluationException
nestedException
- the exception caught by the code block creating
this.public PolicyEvaluationException(Throwable nestedException, String reqId)
PolicyEvaluationException
class.nestedException
- the exception caught by the code block creating
thisreqId
- The id of the policy request exception.public PolicyEvaluationException(String rbName, String errorCode, Object[] args, Throwable nestedException, String reqId)
PolicyEvaluationException
to pass the localized error message
At this level, the locale of the caller is not known and it is
not possible to throw localized error message at this level.
Instead this constructor provides Resource Bundle name and error code
for correctly locating the error message. The default
getMessage()
will always return English messages only. This
is in consistent with current JRE.rbName
- Resource Bundle Name to be used for getting
localized error message.errorCode
- Key to resource bundle. You can use
ResourceBundle rb = ResourceBunde.getBundle (rbName,locale); String localizedStr = rb.getString(errorCode);
args
- arguments to message. If it is not present pass the
as nullnestedException
- the exception caught by the code block creating
thisreqId
- The id of the policy request exception.public PolicyEvaluationException(String rbName, String errorCode, Object[] args, Throwable nestedException)
PolicyEvaluationException
to pass the localized error message
At this level, the locale of the caller is not known and it is
not possible to throw localized error message at this level.
Instead this constructor provides Resource Bundle name and error code
for correctly locating the error message. The default
getMessage()
will always return English messages only.
This is in consistent with current JRE.rbName
- Resource Bundle Name to be used for getting
localized error message.errorCode
- Key to resource bundle. You can use
ResourceBundle rb = ResourceBunde.getBundle (rbName,locale); String localizedStr = rb.getString(errorCode):
args
- arguments to message. If it is not present pass the
as nullnestedException
- the exception caught by the code block creating
thispublic PolicyEvaluationException(String message, String reqId)
PolicyEvaluationException
class.message
- The message provided by the object that is throwing the
exception.reqId
- The id of the policy request exception.public PolicyEvaluationException(String message, Throwable nestedException)
PolicyEvaluationException
class.message
- message of this exceptionnestedException
- the exception caught by the code block creating
this exception.public PolicyEvaluationException(String message, Throwable nestedException, String reqId)
PolicyEvaluationException
class.message
- message of this exceptionnestedException
- the exception caught by the code
block creating this exceptionreqId
- The id of the policy requestpublic String getRequestId()
Copyright © 2010-2018, ForgeRock All Rights Reserved.