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) • 393 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.APIException = void 0;
const BCException_1 = require("./BCException");
class APIException extends BCException_1.BCException {
constructor(httpResponseCode, status, errorCode, errorMessage) {
super(httpResponseCode, status, errorCode, errorMessage);
}
}
exports.APIException = APIException;
;