pixsy/node_modules/har-validator/lib/browser/error.js

15 lines
364 B
JavaScript
Raw Normal View History

2017-12-22 17:22:08 +00:00
export default 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;