Object
Throwable
Exception
DataStoreException
DataStoreReferencingException
- All Implemented Interfaces:
Serializable
,LocalizedException
Thrown when a data store failed to construct the coordinate reference system (CRS)
or other positioning information. This exception is typically (but not necessarily)
caused by
FactoryException
or TransformException
.- Since:
- 0.8
- See Also:
-
Constructor Summary
ConstructorDescriptionDataStoreReferencingException
(String message) Creates an exception with the specified details message.DataStoreReferencingException
(String message, Throwable cause) Creates an exception with the specified details message and cause.Creates an exception with the specified cause and no details message.DataStoreReferencingException
(Locale locale, String format, String filename, Object store) Creates a localized exception with a message saying that the given store cannot be read. -
Method Summary
Methods inherited from class DataStoreException
getInternationalMessage, getLocalizedMessage, getMessage, initCause
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataStoreReferencingException
Creates an exception with the specified details message.- Parameters:
message
- the detail message.
-
DataStoreReferencingException
Creates an exception with the specified cause and no details message. The given cause should (but is not required to) be aFactoryException
orTransformException
.- Parameters:
cause
- the cause for this exception.
-
DataStoreReferencingException
Creates an exception with the specified details message and cause. The given cause should (but is not required to) be aFactoryException
orTransformException
.- Parameters:
message
- the detail message.cause
- the cause for this exception.
-
DataStoreReferencingException
Creates a localized exception with a message saying that the given store cannot be read. Location in the file where the error occurred while be fetched from the givenstore
argument if possible. If the given store is not recognized, then it will be ignored.This constructor should be followed by a call to
DataStoreException.initCause(Throwable)
with aFactoryException
orTransformException
cause.- Parameters:
locale
- the locale of the message to be returned byDataStoreException.getLocalizedMessage()
, ornull
.format
- short name or abbreviation of the data format (e.g. "CSV", "GML", "WKT", etc).filename
- name of the file or data store where the error occurred.store
- the input or output object from which to get the current position, ornull
if none. This can be aLineNumberReader
orXMLStreamReader
for example.
-