UNPKG

nralcm

Version:

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

10 lines (9 loc) 295 B
import { HttpResponseMessage } from "../lifecycle"; import { Exception } from "../core"; /** * Expection class to throw not found 404 when route not found */ export declare class NotFoundException<T> extends Exception<T> { httpResponseMessage: HttpResponseMessage<T>; constructor(); }