UNPKG

dinoloop-es8

Version:

A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript

9 lines (8 loc) 218 B
/** * CustomExceptions must extend this Exception */ export declare abstract class CustomException extends Error { innerException: Error; type: string; constructor(message: string, ex?: Error); }