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