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 Summary
ConstructorsConstructorDescriptionKeyValueStoreException(String message) Basic constructor with only a message explaining the cause of the error.KeyValueStoreException(String message, Throwable cause) Constructor with both a message and an exception explaining the cause of the error.KeyValueStoreException(Throwable cause) Basic constructor with only the cause of the error. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
KeyValueStoreException
Basic constructor with only a message explaining the cause of the error.- Parameters:
message- The message explaining the error that occurred.
-
KeyValueStoreException
Basic constructor with only the cause of the error.- Parameters:
cause- The original cause of the error.
-
KeyValueStoreException
-