bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
17 lines • 496 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BitPayException = void 0;
class BitPayException {
/**
* Construct the BitPayException.
*
* @param message string [optional] The Exception message to throw.
*/
constructor(message) {
this.name = 'BITPAY-EXCEPTION';
this.message = message;
}
}
exports.BitPayException = BitPayException;
exports.default = BitPayException;
//# sourceMappingURL=BitPayException.js.map