bc-opayo-sdk
Version:
BetterCommerce's Opayo NodeJS SDK enables BC client applications to integrate with Opayo merchant API system. It publishes an interface to interact with [Opayo API](https://www.elavon.co.uk/resource-center/help-with-your-solutions/opayo/integrations/types
12 lines (11 loc) • 412 B
JavaScript
;
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;
;