UNPKG

superglue

Version:

Sticky mediator that promotes loose-coupling and makes app-flow clearer.

11 lines (8 loc) 179 B
/** * ContextError Constructor */ module.exports = ContextError; function ContextError () { this.failedOn = null; } ContextError.prototype = Object.create(Error.prototype);