blob: 711b98fd4004074bb180a87805ee5fb1b17f061f [file] [log] [blame]
function TransactionError(result) {
this.code = this.message = result.error
this.name = 'TransactionError'
Error.captureStackTrace(this, TransactionError)
}
TransactionError.prototype = Object.create(Error.prototype)
TransactionError.prototype.constructor = TransactionError
module.exports = TransactionError