Package org.codice.ddf.libs.geo
Class GeoFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.codice.ddf.libs.geo.GeoFormatException
- All Implemented Interfaces:
Serializable
Exception that denotes there was a problem with the Geospatial format. This exception is commonly
used by the coordinate classes
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs new exception.GeoFormatException(String message) Constructs new exception with given message.GeoFormatException(String message, Throwable cause) Constructs new exception with given message and cause.GeoFormatException(Throwable cause) Constructs new exception with the given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
GeoFormatException
public GeoFormatException()Constructs new exception. -
GeoFormatException
Constructs new exception with given message.- Parameters:
message- the detail message.
-
GeoFormatException
Constructs new exception with given message and cause.- Parameters:
message- the detail message.cause- the cause.
-
GeoFormatException
Constructs new exception with the given cause.- Parameters:
cause- the cause.
-