ServiceUnavailableException constructor

const ServiceUnavailableException(
  1. String message
)

Creates a ServiceUnavailableException with the specified message.

The message is a human-readable description of the service unavailable error.

Implementation

const ServiceUnavailableException(String message)
    : super(message, HttpStatus.serviceUnavailable);