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

public class ResilienceRuntimeException extends RuntimeException
Exception class dedicated to failing resilient functions.
See Also:
  • Constructor Details

    • ResilienceRuntimeException

      public ResilienceRuntimeException(@Nullable Throwable cause)
      Throw exception with another caused-by exception.
      Parameters:
      cause - Exception to use as cause.
    • ResilienceRuntimeException

      public ResilienceRuntimeException(@Nullable String message)
      Throw exception with custom string message.
      Parameters:
      message - User message to add to the exception.
    • ResilienceRuntimeException

      public ResilienceRuntimeException(@Nullable String message, @Nullable Throwable cause)
      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()