Class ReferenceVerifyException
- Object
-
- Throwable
-
- Exception
-
- TransformException
-
- GazetteerException
-
- ReferenceVerifyException
-
- All Implemented Interfaces:
Serializable
public class ReferenceVerifyException extends GazetteerException
Thrown when a geographic identifier (or reference) has been successfully parsed but fails some verification. Examples:- The 100 000-metres square identification of a MGRS reference is not consistent with the Grid Zone Designation.
- Since:
- 0.8
- See Also:
- Serialized Form
Defined in the
sis-referencing-by-identifiers
module
-
-
Constructor Summary
Constructors Constructor Description ReferenceVerifyException()
Constructs a new exception with no detail message.ReferenceVerifyException(String message)
Constructs a new exception with the specified detail message.ReferenceVerifyException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.ReferenceVerifyException(Throwable cause)
Constructs a new exception with the specified cause.
-
Method Summary
-
Methods inherited from class TransformException
getLastCompletedTransform, setLastCompletedTransform
-
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ReferenceVerifyException
public ReferenceVerifyException()
Constructs a new exception with no detail message.
-
ReferenceVerifyException
public ReferenceVerifyException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the details message, ornull
if none.
-
ReferenceVerifyException
public ReferenceVerifyException(Throwable cause)
Constructs a new exception with the specified cause. The details message is copied from the cause.- Parameters:
cause
- the cause, ornull
if none.
-
-