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

5 lines
189 B
TypeScript

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