bc-clearpay-sdk
Version:
BetterCommerce's ClearPay NodeJS SDK enables BC client applications to integrate with ClearPay merchant API system. It publishes an interface to interact with [ClearPay API v2](https://developers.clearpay.co.uk/clearpay-online/reference) endpoints.
12 lines (11 loc) • 456 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthenticationException = void 0;
const BaseException_1 = require("./BaseException");
class AuthenticationException extends BaseException_1.BaseException {
constructor(httpResponseCode, status, errorCode, errorMessage) {
super(httpResponseCode, status, errorCode, errorMessage);
}
}
exports.AuthenticationException = AuthenticationException;
;