Class TenantAccessException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.sap.cloud.sdk.cloudplatform.tenant.exception.TenantAccessException
All Implemented Interfaces:
Serializable

public class TenantAccessException extends RuntimeException
Runtime exception indicating an issue while accessing a tenant.
See Also:
  • Constructor Details

    • TenantAccessException

      public TenantAccessException(@Nullable String message)
      Initializes the exception by delegating the message to the super constructor.
      Parameters:
      message - The exception message.
    • TenantAccessException

      public TenantAccessException(@Nullable Throwable cause)
      Initializes the exception by delegating the causing exception to the super constructor.
      Parameters:
      cause - The exception that caused the exception to be created.
    • TenantAccessException

      public TenantAccessException(@Nullable String message, @Nullable Throwable cause)
      Initializes the exception by delegating the message and the causing exception to the super constructor.
      Parameters:
      message - The exception message.
      cause - The exception that caused the exception to be created.
    • TenantAccessException

      public TenantAccessException()