UNPKG

bricks-cli

Version:

Command line tool for developing ambitious ember.js apps

13 lines (9 loc) 261 B
'use strict'; function SilentError(message) { this.name = 'SilentError'; this.message = message; this.suppressStacktrace = true; } SilentError.prototype = new Error(); SilentError.prototype.constructor = SilentError; module.exports = SilentError;