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:
-
Constructor Summary
ConstructorDescriptionConstructs 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 Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
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.
-