innovationDriveApp/node_modules/har-validator/lib/browser/error.js
2018-07-08 19:21:40 +10:00

15 lines
No EOL
364 B
JavaScript

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;