UNPKG

nralcm

Version:

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

10 lines (9 loc) 289 B
import { HttpResponseMessage } from "../lifecycle"; import { Exception } from "../core"; /** * Expection class to throw handler not found 400 */ export declare class HandlerNotFoundException<T> extends Exception<T> { httpResponseMessage: HttpResponseMessage<T>; constructor(); }