issrg.pba.rbac.xmlpolicy.ifstatement
Class EvaluationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
issrg.utils.EmbeddedException
issrg.pba.PbaException
issrg.pba.rbac.xmlpolicy.ifstatement.EvaluationException
- All Implemented Interfaces:
- java.io.Serializable
public class EvaluationException
- extends PbaException
This is the exception thrown by the IF-statement evaluation mechanism.
- Version:
- 1.0
- Author:
- A.Otenko
- See Also:
- Serialized Form
Constructor Summary |
EvaluationException()
|
EvaluationException(java.lang.String msg)
This constructor builds a EvaluationException given a human-readable
message explaining the error. |
EvaluationException(java.lang.String msg,
java.lang.Throwable th)
This constructor builds a EvaluationException given a human-readable
message explaining the error and the Throwable that caused the error. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
EvaluationException
public EvaluationException()
EvaluationException
public EvaluationException(java.lang.String msg)
- This constructor builds a EvaluationException given a human-readable
message explaining the error.
- Parameters:
msg
- - the human-readable message
EvaluationException
public EvaluationException(java.lang.String msg,
java.lang.Throwable th)
- This constructor builds a EvaluationException given a human-readable
message explaining the error and the Throwable that caused the error.
- Parameters:
msg
- - the human-readable messageth
- - the cause of the error; can be null, in which case it is the
same as calling new EvaluationException(msg)