Package org.apache.sis.metadata.sql
Class MetadataStoreException
-
- All Implemented Interfaces:
Serializable
public class MetadataStoreException extends Exception
Thrown when a metadata access failed. The cause for this exception is typically aSQLException
.- Since:
- 0.8
- See Also:
- Serialized Form
Defined in the
sis-metadata
module
-
-
Constructor Summary
Constructors Constructor Description MetadataStoreException(Exception cause)
Creates an instance ofMetadataException
with the specified cause.MetadataStoreException(String message)
Creates an instance ofMetadataException
with the specified detail message.MetadataStoreException(String message, Exception cause)
Creates an instance ofMetadataException
with the specified message and cause.
-
Method Summary
-
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MetadataStoreException
public MetadataStoreException(String message)
Creates an instance ofMetadataException
with the specified detail message.- Parameters:
message
- the detail message.
-
MetadataStoreException
public MetadataStoreException(Exception cause)
Creates an instance ofMetadataException
with the specified cause.- Parameters:
cause
- the cause of this exception.
-
-