issrg.pba.rbac.xmlpolicy.ifstatement
Class EvaluationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by issrg.utils.EmbeddedException
              extended by issrg.pba.PbaException
                  extended by 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.
 
Method Summary
 
Methods inherited from class issrg.utils.EmbeddedException
getEmbedded, printStackTrace, printStackTrace, printStackTrace
 
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
 

Constructor Detail

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 message
th - - the cause of the error; can be null, in which case it is the same as calling new EvaluationException(msg)