Class EvaluationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
fr.inria.rules.integraal.model.data.readable.exception.EvaluationException
- All Implemented Interfaces:
Serializable
Exception thrown when an error occurs during the evaluation of a query.
This checked exception is used to indicate issues that arise while processing
or executing queries in the system.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new EvaluationException withnullas its detail message.EvaluationException(String message) Constructs a new EvaluationException with the specified detail message.EvaluationException(String message, Throwable cause) Constructs a new EvaluationException with the specified detail message and cause.EvaluationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new EvaluationException with the specified detail message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.EvaluationException(Throwable cause) Constructs a new EvaluationException with the specified cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EvaluationException
public EvaluationException()Constructs a new EvaluationException withnullas its detail message. -
EvaluationException
Constructs a new EvaluationException with the specified detail message.- Parameters:
message- the detail message.
-
EvaluationException
Constructs a new EvaluationException with the specified detail message and cause.- Parameters:
message- the detail message.cause- the cause of the exception (which is saved for later retrieval by theThrowable.getCause()method).
-
EvaluationException
Constructs a new EvaluationException with the specified cause.- Parameters:
cause- the cause of the exception (which is saved for later retrieval by theThrowable.getCause()method).
-
EvaluationException
public EvaluationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new EvaluationException with the specified detail message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.- Parameters:
message- the detail message.cause- the cause of the exception.enableSuppression- whether or not suppression is enabled or disabled.writableStackTrace- whether or not the stack trace should be writable.
-