UNPKG

propman

Version:

Property and config loader and manager, allowing you to load hierarchical property values based on environment variables

16 lines (12 loc) 373 B
/** * Created by vinhta on 31/12/2015. */ var util = require('util'); function RequiredPropertyNotSetError(message, extra) { Error.captureStackTrace(this, this.constructor); this.name = this.constructor.name; this.message = message; this.extra = extra; } util.inherits(RequiredPropertyNotSetError, Error); module.exports = RequiredPropertyNotSetError;