ServiceUnavailableException constructor
const
ServiceUnavailableException(
- 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);