Package dev.nm.analysis.function
Class Function.EvaluationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- dev.nm.analysis.function.Function.EvaluationException
-
- All Implemented Interfaces:
Serializable
public static class Function.EvaluationException extends RuntimeException
This is theRuntimeException
thrown when it fails to evaluate an expression. E.g., when there are not two arguments passed in aBivariateRealFunction
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EvaluationException(String msg)
Constructs anEvaluationException
with the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
EvaluationException
public EvaluationException(String msg)
Constructs anEvaluationException
with the specified detail message.- Parameters:
msg
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
-