Module org.opengis.geoapi
Package org.opengis.coordinate
Class MismatchedCoordinateMetadataException
Object
Throwable
Exception
RuntimeException
IllegalArgumentException
MismatchedCoordinateMetadataException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MismatchedDimensionException
Indicates that an operation cannot be completed properly because of a
mismatch in the coordinate reference systems or epoch of components.
For example, this exception may be thrown on attempts to construct
an envelope with lower and upper corners in different CRS.
- Since:
- 3.1
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an exception with no message.Creates an exception with the specified message.MismatchedCoordinateMetadataException
(String message, Throwable cause) Creates an exception with the specified message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MismatchedCoordinateMetadataException
Creates an exception with no message. -
MismatchedCoordinateMetadataException
Creates an exception with the specified message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
MismatchedCoordinateMetadataException
Creates an exception with the specified message and cause.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- the cause.
-