UNPKG

nralcm

Version:

This is a framework based on NodeJs to manage rest api request lifecycle

10 lines (9 loc) 296 B
import { HttpResponseMessage } from "../lifecycle"; import { Exception } from "../core"; /** * Expection class to throw server error 500 */ export declare class ServerErrorException<T> extends Exception<T> { httpResponseMessage: HttpResponseMessage<T>; constructor(message?: string); }