UNPKG

ember-introjs

Version:
17 lines (13 loc) 404 B
'use strict'; module.exports = BuildError; function BuildError(input) { Error.call(this); this.message = input.message; this.file = input.file; this.filename = input.filename; // For testing errors from Uglify this.line = input.line; this.col = input.col; this.stack = input.stack; this.broccoliPayload = input.broccoliPayload; } BuildError.prototype = Object.create(Error.prototype);