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.TermA method is not required to declare in its
throwsclause any subclasses ofEvalExceptionsince it is derived fromjava.lang.RuntimeException.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EvalException()Constructs aEvalExceptionwith no detail message.EvalException(String message)Constructs aEvalExceptionwith 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 aEvalExceptionwith no detail message.
-
EvalException
public EvalException(String message)
Constructs aEvalExceptionwith the specified detail message.- Parameters:
message- the detail message.
-
-