UNPKG

read-config-ng

Version:
13 lines (9 loc) 289 B
'use strict'; module.exports = ReadConfigError; function ReadConfigError(message, extra) { Error.captureStackTrace(this, this.constructor); this.name = this.constructor.name; this.message = message; this.extra = extra; } require('util').inherits(module.exports, Error);