Files
nest/lib/common/exceptions/gateway-timeout.exception.d.ts
2018-03-27 13:26:50 +02:00

5 lines
185 B
TypeScript

import { HttpException } from './http.exception';
export declare class GatewayTimeoutException extends HttpException {
constructor(message?: string | object | any, error?: string);
}