How to use make-error-cause - 5 common examples

To help you get started, we’ve selected a few make-error-cause examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github SwellRT / swellrt / pad / node_modules / typings / node_modules / typings-core / node_modules / popsicle / dist / error.js View on Github external
var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var makeErrorCause = require('make-error-cause');
var PopsicleError = (function (_super) {
    __extends(PopsicleError, _super);
    function PopsicleError(message, code, original, popsicle) {
        _super.call(this, message, original);
        this.name = 'PopsicleError';
        this.code = code;
        this.popsicle = popsicle;
    }
    return PopsicleError;
}(makeErrorCause.BaseError));
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = PopsicleError;
//# sourceMappingURL=error.js.map
github mendersoftware / gui / node_modules / gulp-uglify / lib / gulp-uglify-error.js View on Github external
gulpUglifyError.prototype.toString = function() {
  var cause = this.cause || {};

  return makeErrorCause.BaseError.prototype.toString.call(this) +
    (this.fileName ? '\nFile: ' + this.fileName : '') +
    (cause.line ? '\nLine: ' + cause.line : '');
};
github VadimDez / ng2-pdf-viewer / node_modules / popsicle / dist / error.js View on Github external
var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var makeErrorCause = require('make-error-cause');
var PopsicleError = (function (_super) {
    __extends(PopsicleError, _super);
    function PopsicleError(message, code, original, popsicle) {
        _super.call(this, message, original);
        this.name = 'PopsicleError';
        this.code = code;
        this.popsicle = popsicle;
    }
    return PopsicleError;
})(makeErrorCause.BaseError);
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = PopsicleError;
//# sourceMappingURL=error.js.map
github terinjokes / gulp-uglify / lib / gulp-uglify-error.js View on Github external
gulpUglifyError.prototype.toString = function() {
  var cause = this.cause || {};

  return (
    makeErrorCause.BaseError.prototype.toString.call(this) +
    (this.fileName ? '\nFile: ' + this.fileName : '') +
    (cause.line ? '\nLine: ' + cause.line : '') +
    (cause.col ? '\nCol: ' + cause.col : '')
  );
};
github serviejs / popsicle / popsicle.js View on Github external
},{"./error":5,"./form":6,"./jar":7,"./plugins/index":8,"./request":10,"./response":11,"_process":20,"methods":17,"xtend":24}],5:[function(require,module,exports){
var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var makeErrorCause = require('make-error-cause');
var PopsicleError = (function (_super) {
    __extends(PopsicleError, _super);
    function PopsicleError(message, code, original, popsicle) {
        _super.call(this, message, original);
        this.code = code;
        this.popsicle = popsicle;
    }
    return PopsicleError;
})(makeErrorCause.BaseError);
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = PopsicleError;

},{"make-error-cause":15}],6:[function(require,module,exports){
var FormData = require('form-data');

make-error-cause

Make your own nested error types!

Apache-2.0
Latest version published 4 years ago

Package Health Score

53 / 100
Full package analysis

Popular make-error-cause functions