Class GazetteerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opengis.referencing.operation.TransformException
org.apache.sis.referencing.gazetteer.GazetteerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ReferenceVerifyException
public class GazetteerException
extends org.opengis.referencing.operation.TransformException
Thrown when a coordinate cannot be converted to a geographic identifier, or conversely.
- Since:
- 0.8
- Version:
- 0.8
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
Serial number for inter-operability with different versions. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with no detail message.GazetteerException
(String message) Constructs a new exception with the specified detail message.GazetteerException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.GazetteerException
(Throwable cause) Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class org.opengis.referencing.operation.TransformException
getLastCompletedTransform, setLastCompletedTransform
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 serialVersionUIDSerial number for inter-operability with different versions.- See Also:
-
-
Constructor Details
-
GazetteerException
public GazetteerException()Constructs a new exception with no detail message. -
GazetteerException
Constructs a new exception with the specified detail message.- Parameters:
message
- the details message, ornull
if none.
-
GazetteerException
Constructs a new exception with the specified cause. The details message is copied from the cause.- Parameters:
cause
- the cause, ornull
if none.
-
GazetteerException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the details message, ornull
if none.cause
- the cause, ornull
if none.
-