UNPKG

bc-payments-sdk

Version:

BetterCommerce's Payments NodeJS SDK is a complete solution for storefront clients that integrate payments. `bc-payments-sdk` is a single point interface for storefront clients for interacting with payment gateways.

12 lines (11 loc) 433 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.APIConnectionException = void 0; const BCException_1 = require("./BCException"); class APIConnectionException extends BCException_1.BCException { constructor(httpResponseCode, status, errorCode, errorMessage) { super(httpResponseCode, status, errorCode, errorMessage); } } exports.APIConnectionException = APIConnectionException; ;