- Add serve.py to resolve clean Quartz URLs to .html files - Regenerate Quartz site with correct baseUrl http://100.118.5.51:9120 - 196 HTML files emitted; all internal links now resolve
18 lines
373 B
JavaScript
18 lines
373 B
JavaScript
function HARError (errors) {
|
|
var 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 = HARError
|