GatewayTimeoutException constructor

const GatewayTimeoutException(
  1. String message
)

Creates a GatewayTimeoutException with the specified message.

The message is a human-readable description of the gateway timeout error.

Implementation

const GatewayTimeoutException(String message)
    : super(message, HttpStatus.gatewayTimeout);