UNPKG

arrow-express

Version:

Library to bootstrap express applications with zero configuration

9 lines 226 B
/** * Error related to arrow-express configuration. */ export class ConfigurationError extends Error { constructor(message: string) { super(message); Object.setPrototypeOf(this, ConfigurationError.prototype); } }