# GatewayTimeout Class

Module
import { GatewayTimeout } from "@tsed/exceptions"
Source/packages/exceptions/src/serverErrors/GatewayTimeout.ts

# Overview

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

# Members

static readonly STATUS = 504;

name: string;