UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

16 lines (12 loc) 356 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; } BuildError.prototype = Object.create(Error.prototype);