Package org.apache.sis.referencing
Class GeodeticException
Object
Throwable
Exception
RuntimeException
GeodeticException
- All Implemented Interfaces:
- Serializable
Unchecked exception thrown when an error occurred while computing a geodetic value.
 This exception may be used in contexts where a checked exception cannot be thrown.
 This exception typically has a 
FactoryException or
 TransformException as its cause.- Since:
- 1.0
- See Also:
Defined in the sis-referencing module
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a new exception with no message.GeodeticException(String message) Constructs a new exception with the specified detail message.GeodeticException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.GeodeticException(Throwable cause) Constructs a new exception with the specified cause.
- 
Method SummaryMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
GeodeticExceptionpublic GeodeticException()Constructs a new exception with no message.
- 
GeodeticExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- the detail message, or- nullif none.
 
- 
GeodeticExceptionConstructs a new exception with the specified cause.- Parameters:
- cause- the cause, or- nullif none.
 
- 
GeodeticExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- the detail message, or- nullif none.
- cause- the cause, or- nullif none.
 
 
-