Package org.apache.sis.storage
Class DataStoreReferencingException
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:
Defined in the sis-storage module
- 
Constructor SummaryConstructorsConstructorDescriptionDataStoreReferencingException(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 SummaryMethods inherited from class DataStoreExceptiongetInternationalMessage, getLocalizedMessage, getMessage, initCauseMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
DataStoreReferencingExceptionCreates an exception with the specified details message.- Parameters:
- message- the detail message.
 
- 
DataStoreReferencingExceptionCreates an exception with the specified cause and no details message. The given cause should (but is not required to) be aFactoryExceptionorTransformException.- Parameters:
- cause- the cause for this exception.
 
- 
DataStoreReferencingExceptionCreates an exception with the specified details message and cause. The given cause should (but is not required to) be aFactoryExceptionorTransformException.- Parameters:
- message- the detail message.
- cause- the cause for this exception.
 
- 
DataStoreReferencingExceptionCreates 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 givenstoreargument 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 aFactoryExceptionorTransformExceptioncause.- Parameters:
- locale- the locale of the message to be returned by- DataStoreException.getLocalizedMessage(), or- null.
- 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, or- nullif none. This can be a- LineNumberReaderor- XMLStreamReaderfor example.
 
 
-