Module org.apache.sis.referencing
Class MismatchedDatumException
Object
Throwable
Exception
RuntimeException
IllegalArgumentException
MismatchedDatumException
- All Implemented Interfaces:
Serializable
Thrown when the source and target CRS of a conversion use different datum.
By definition, conversions do not perform any change of datum
while transformations can do.
Usage note
SIS is tolerant about different datum atDefaultConversion
construction time,
for the reasons explained in its constructor.
However, SIS is stricter at Derived CRS
construction time.- Since:
- 0.6
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new exception with no message.MismatchedDatumException
(String message) Constructs a new exception with the specified detail message.MismatchedDatumException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MismatchedDatumException
public MismatchedDatumException()Constructs a new exception with no message. -
MismatchedDatumException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message, ornull
if none.
-
MismatchedDatumException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message, ornull
if none.cause
- the cause, ornull
if none.
-