Package org.apache.sis.metadata.sql
Class MetadataStoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.sis.metadata.sql.MetadataStoreException
- All Implemented Interfaces:
Serializable
Thrown when a metadata access failed.
The cause for this exception is typically a
SQLException.- Since:
- 0.8
- Version:
- 0.8
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final longFor cross-version compatibility. -
Constructor Summary
ConstructorsConstructorDescriptionMetadataStoreException(Exception cause) Creates an instance ofMetadataExceptionwith the specified cause.MetadataStoreException(String message) Creates an instance ofMetadataExceptionwith the specified detail message.MetadataStoreException(String message, Exception cause) Creates an instance ofMetadataExceptionwith the specified message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor cross-version compatibility.- See Also:
-
-
Constructor Details
-
MetadataStoreException
Creates an instance ofMetadataExceptionwith the specified detail message.- Parameters:
message- the detail message.
-
MetadataStoreException
Creates an instance ofMetadataExceptionwith the specified cause.- Parameters:
cause- the cause of this exception.
-
MetadataStoreException
Creates an instance ofMetadataExceptionwith the specified message and cause.- Parameters:
message- the detail message.cause- the cause of this exception.
-