Class ResilienceRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.sap.cloud.sdk.cloudplatform.resilience.ResilienceRuntimeException
- All Implemented Interfaces:
Serializable
Exception class dedicated to failing resilient functions.
- See Also:
-
Constructor Summary
ConstructorDescriptionResilienceRuntimeException
(String message) Throw exception with custom string message.ResilienceRuntimeException
(String message, Throwable cause) Throw exception with custom string message and another caused-by exception.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
-
ResilienceRuntimeException
Throw exception with another caused-by exception.- Parameters:
cause
- Exception to use as cause.
-
ResilienceRuntimeException
Throw exception with custom string message.- Parameters:
message
- User message to add to the exception.
-
ResilienceRuntimeException
Throw exception with custom string message and another caused-by exception.- Parameters:
message
- User message to add to the exception.cause
- Exception to use as cause.
-
ResilienceRuntimeException
public ResilienceRuntimeException()
-