UNPKG

@gear-js/api

Version:

A JavaScript library that provides functionality to connect GEAR Component APIs.

12 lines (9 loc) 220 B
'use strict'; class TransactionError extends Error { name = 'TransactionError'; constructor(message) { super(); this.message = `${message}`; } } exports.TransactionError = TransactionError;