UNPKG

nralcm

Version:

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

10 lines (9 loc) 319 B
import { HttpResponseMessage } from "../lifecycle"; import { Exception } from "../core"; /** * Expection class to throw syntax error 400 when body of request is not valid json */ export declare class SyntaxErrorException<T> extends Exception<T> { httpResponseMessage: HttpResponseMessage<T>; constructor(); }