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
This is the
RuntimeException
thrown when it fails to evaluate an expression.
E.g., when there are not two arguments passed in a BivariateRealFunction
.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs 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 Details
-
EvaluationException
Constructs anEvaluationException
with the specified detail message.- Parameters:
msg
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-