Skip to content

GatewayTimeout

@tsed/exceptions

Usage

typescript
import { GatewayTimeout } from "@tsed/exceptions";

See /packages/specs/exceptions/src/types/serverErrors/GatewayTimeout.ts.

Overview

ts
class GatewayTimeout extends ServerException {
    static readonly STATUS = 504;
    constructor(message: string, origin?: Error | string | any);
}

static readonly STATUS

ts
static readonly STATUS = 504;

Released under the MIT License.