Class CacheRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.sap.cloud.sdk.cloudplatform.cache.CacheRuntimeException
- All Implemented Interfaces:
Serializable
Exception class dedicated to failing cache calls.
- See Also:
-
Constructor Summary
ConstructorDescriptionCacheRuntimeException
(String message) Throw exception with custom string message.CacheRuntimeException
(Throwable cause) Throw exception with another caused-by exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CacheRuntimeException
Throw exception with custom string message.- Parameters:
message
- User message to add to the exception.
-
CacheRuntimeException
Throw exception with another caused-by exception.- Parameters:
cause
- Exception to use as cause.
-