Class StoreException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.terracottatech.store.StoreException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DatasetExistsException, DatasetKeyTypeMismatchException, DatasetMissingException

public class StoreException extends Exception
A checked exception that indicates a store operation has failed.
See Also:
  • Constructor Details

    • StoreException

      public StoreException(Throwable cause)
      Create a StoreException with an underlying cause.
      Parameters:
      cause - the exception that led to this exception being created
    • StoreException

      public StoreException(String message)
      Create a StoreException with a message.
      Parameters:
      message - the message
    • StoreException

      public StoreException(String message, Throwable cause)
      Create a StoreException with a message and underlying cause.
      Parameters:
      message - the message
      cause - the exception that led to this exception being created