Class KeyValueStoreException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.aquima.interactions.foundation.exception.AppException
com.blueriq.component.api.store.keyvalue.exception.KeyValueStoreException
All Implemented Interfaces:
Serializable

public class KeyValueStoreException extends com.aquima.interactions.foundation.exception.AppException
See Also:
  • Constructor Details

    • KeyValueStoreException

      public KeyValueStoreException(String message)
      Basic constructor with only a message explaining the cause of the error.
      Parameters:
      message - The message explaining the error that occurred.
    • KeyValueStoreException

      public KeyValueStoreException(Throwable cause)
      Basic constructor with only the cause of the error.
      Parameters:
      cause - The original cause of the error.
    • KeyValueStoreException

      public KeyValueStoreException(String message, Throwable cause)
      Constructor with both a message and an exception explaining the cause of the error.
      Parameters:
      message - The message explaining the error that occurred.
      cause - The original cause of the error.