Package org.esa.snap.core.jexp
Class EvalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.esa.snap.core.jexp.EvalException
- All Implemented Interfaces:
Serializable
An exception that can be thrown during the evaluation of a
Term
.
A method is not required to declare in its throws
clause any subclasses of EvalException
since it is derived from
java.lang.RuntimeException
.
- Version:
- $Revision$ $Date$
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aEvalException
with no detail message.EvalException
(String message) Constructs aEvalException
with the specified detail message.EvalException
(String message, Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EvalException
public EvalException()Constructs aEvalException
with no detail message. -
EvalException
Constructs aEvalException
with the specified detail message.- Parameters:
message
- the detail message.
-
EvalException
-