Object
Throwable
Exception
RuntimeException
CannotEvaluateException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PointOutsideCoverageException
,SubspaceNotSpecifiedException
Thrown when a quantity can not be evaluated.
Upcoming API change:
this class may move to GeoAPI in a future version. If that move happens,
the
org.apache.sis.coverage
package name would become org.opengis.coverage
.- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an exception with no message.CannotEvaluateException
(String message) Creates an exception with the specified message.CannotEvaluateException
(String message, Throwable cause) Creates an exception with the specified message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CannotEvaluateException
public CannotEvaluateException()Creates an exception with no message. -
CannotEvaluateException
Creates an exception with the specified message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
CannotEvaluateException
Creates an exception with the specified message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- the cause for this exception. The cause is saved for later retrieval by theThrowable.getCause()
method.
-