UNPKG

bc-checkout-sdk

Version:

BetterCommerce's Checkout NodeJS SDK enables BC client applications to integrate with Checkout merchant API system. It publishes an interface to interact with [Checkout API](https://api-reference.checkout.com/#operation/getPaymentDetails/) endpoints.

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