Class MetadataStoreException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.sis.metadata.sql.MetadataStoreException
All Implemented Interfaces:
Serializable

public class MetadataStoreException extends Exception
Thrown when a metadata access failed. The cause for this exception is typically a SQLException.
Since:
0.8
Version:
0.8
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      For cross-version compatibility.
      See Also:
  • Constructor Details

    • MetadataStoreException

      public MetadataStoreException(String message)
      Creates an instance of MetadataException with the specified detail message.
      Parameters:
      message - the detail message.
    • MetadataStoreException

      public MetadataStoreException(Exception cause)
      Creates an instance of MetadataException with the specified cause.
      Parameters:
      cause - the cause of this exception.
    • MetadataStoreException

      public MetadataStoreException(String message, Exception cause)
      Creates an instance of MetadataException with the specified message and cause.
      Parameters:
      message - the detail message.
      cause - the cause of this exception.