initial
This commit is contained in:
22
node_modules/har-validator/lib/node6/error.js
generated
vendored
Normal file
22
node_modules/har-validator/lib/node6/error.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = HARError;
|
||||
function HARError(errors) {
|
||||
let message = 'validation failed';
|
||||
|
||||
this.name = 'HARError';
|
||||
this.message = message;
|
||||
this.errors = errors;
|
||||
|
||||
if (typeof Error.captureStackTrace === 'function') {
|
||||
Error.captureStackTrace(this, this.constructor);
|
||||
} else {
|
||||
this.stack = new Error(message).stack;
|
||||
}
|
||||
}
|
||||
|
||||
HARError.prototype = Error.prototype;
|
||||
module.exports = exports['default'];
|
||||
Reference in New Issue
Block a user