| org.geotools.coverage.OrdinateOutsideCoverageException
OrdinateOutsideCoverageException | public class OrdinateOutsideCoverageException extends PointOutsideCoverageException (Code) | | Thrown when an
evaluate(...) method method is invoked with a point outside coverage.
This subclass of
PointOutsideCoverage exception is used when the dimension of the
out-of-bounds ordinate is known.
since: 2.1 version: $Id: OrdinateOutsideCoverageException.java 24925 2007-03-27 20:12:08Z jgarnett $ author: Martin Desruisseaux |
OrdinateOutsideCoverageException | public OrdinateOutsideCoverageException(String message, int dimension)(Code) | | Creates an exception with the specified message.
Parameters: message - The detail message. The detail message is saved for later retrieval by the OrdinateOutsideCoverageException.getMessage() method. Parameters: dimension - The dimension of the out-of-bounds ordinate. |
OrdinateOutsideCoverageException | public OrdinateOutsideCoverageException(String message, int dimension, Envelope envelope)(Code) | | Creates an exception with the specified message.
Parameters: message - The detail message. The detail message is saved for later retrieval by the OrdinateOutsideCoverageException.getMessage() method. Parameters: dimension - The dimension of the out-of-bounds ordinate. Parameters: envelope - The coverage envelope, or null if unknown. since: 2.3 |
OrdinateOutsideCoverageException | OrdinateOutsideCoverageException(OrdinateOutsideCoverageException cause, Date date)(Code) | | Creates an exception with the specified cause and an automaticaly formatted message. This
constructor assumes that the out-of-bounds value was the temporal ordinate (i.e. the date).
This condition should be verified before to invoke this constructor. A localized error
message including the specified date is then formatted.
This constructor is for internal use by
evaluate(Point2D, Date, ...) methods in
SpatioTemporalCoverage3D , in order to replace dates as numerical values by a more
explicit string. Users can still get the numerical value if they looks at the cause of this
exception.
|
getCoverageEnvelope | public Envelope getCoverageEnvelope()(Code) | | Returns the coverage envelope, or
null if unknown.
since: 2.3 |
getOutOfBoundsDimension | public int getOutOfBoundsDimension()(Code) | | Returns the dimension of the out-of-bounds ordinate.
|
|
|