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
public class EvalException extends RuntimeException
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 ofEvalException
since it is derived fromjava.lang.RuntimeException
.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EvalException()
Constructs 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 Detail
-
EvalException
public EvalException()
Constructs aEvalException
with no detail message.
-
EvalException
public EvalException(String message)
Constructs aEvalException
with the specified detail message.- Parameters:
message
- the detail message.
-
-