UNPKG

alfy-test

Version:
14 lines (10 loc) 269 B
'use strict'; class AlfyTestError extends Error { constructor(message, result) { super(message); Error.captureStackTrace(this, this.constructor); this.name = 'AlfyTestError'; Object.assign(this, {result}); } } module.exports.AlfyTestError = AlfyTestError;