Package org.apache.sis.referencing
Class GeodeticException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.sis.referencing.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
- Version:
- 1.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
For cross-version compatibility. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs 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 Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor cross-version compatibility.- See Also:
-
-
Constructor Details
-
GeodeticException
public GeodeticException()Constructs a new exception with no message. -
GeodeticException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message, ornull
if none.
-
GeodeticException
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause, ornull
if none.
-
GeodeticException
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.
-