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) • 364 B
TypeScript
export declare class BaseException extends Error {
httpResponseCode: any;
status: any;
errorCode: string;
errorMessage: string;
constructor(httpResponseCode: any, status: any, errorCode: string, errorMessage: string);
getHttpResponseCode(): any;
getStatus(): any;
getErrorCode(): string;
getErrorMessage(): string;
}