source: trip-planner-front/node_modules/har-validator/lib/error.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 373 bytes
Line 
1function HARError (errors) {
2 var message = 'validation failed'
3
4 this.name = 'HARError'
5 this.message = message
6 this.errors = errors
7
8 if (typeof Error.captureStackTrace === 'function') {
9 Error.captureStackTrace(this, this.constructor)
10 } else {
11 this.stack = (new Error(message)).stack
12 }
13}
14
15HARError.prototype = Error.prototype
16
17module.exports = HARError
Note: See TracBrowser for help on using the repository browser.