Class TenantUnavailableException

All Implemented Interfaces:
Serializable

public class TenantUnavailableException extends RuntimeException
TenantUnavailableException is a runtime exception which is thrown when the tenant context is unavailable.
See Also:
  • Constructor Details

    • TenantUnavailableException

      public TenantUnavailableException(String message, Exception nestedException)
      Constructs a new tenant unavailable exception with the specified detail message and cause.

      Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.

      Parameters:
      message - the detail message which is saved for later retrieval by the Throwable.getMessage() method
      nestedException - cause the cause (which is saved for later retrieval by the Throwable.getCause() method).
    • TenantUnavailableException

      public TenantUnavailableException(String message)
      Constructs a new tenant unavailable exception with the specified detail message.
      Parameters:
      message - the detail message which is saved for later retrieval by the Throwable.getMessage() method.