Package org.apache.sis.storage
Class CanNotProbeException
Object
Throwable
Exception
DataStoreException
CanNotProbeException
- All Implemented Interfaces:
- Serializable,- LocalizedException
Thrown when an unrecoverable error occurred during the probing of a file.
 This exception contains a reference to the provider that failed.
- Since:
- 1.2
- See Also:
Defined in the sis-storage module
- 
Constructor SummaryConstructorsConstructorDescriptionCanNotProbeException(DataStoreProvider provider, String message, Throwable cause) Creates an exception with the specified details message and cause.CanNotProbeException(DataStoreProvider provider, StorageConnector connector, Throwable cause) Creates a localized exception with a message saying that the given store cannot be processed.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the data store provider that failed to probe a file.Methods inherited from class DataStoreExceptiongetInternationalMessage, getLocalizedMessage, getMessage, initCauseMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
CanNotProbeExceptionCreates an exception with the specified details message and cause.- Parameters:
- provider- the data store provider that failed to probe a file.
- message- the detail message in the default locale.
- cause- the cause for this exception.
 
- 
CanNotProbeExceptionpublic CanNotProbeException(DataStoreProvider provider, StorageConnector connector, Throwable cause) Creates a localized exception with a message saying that the given store cannot be processed.- Parameters:
- provider- the data store provider that failed to probe a file.
- connector- the stream, file or other kind of resource that the store provider tried to probe.
- cause- the reason why the data store cannot be probed.
 
 
- 
- 
Method Details- 
getProviderReturns the data store provider that failed to probe a file.- Returns:
- the data store provider that failed to probe a file.
- See Also:
 
 
-