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.
 
Note:
 SIS is tolerant about different datum at 
DefaultConversion construction time,
 for the reasons explained in its constructor.
 However, SIS is stricter at Derived CRS
 construction time.- Since:
- 0.6
- See Also:
Defined in the sis-referencing module
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs 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 SummaryMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
MismatchedDatumExceptionpublic MismatchedDatumException()Constructs a new exception with no message.
- 
MismatchedDatumExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- the detail message, or- nullif none.
 
- 
MismatchedDatumExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- the detail message, or- nullif none.
- cause- the cause, or- nullif none.
 
 
-