bc-node-sdk
Version:
BetterCommerce's NodeJS SDK encapsulates the base framework for all the Next.js applications.
12 lines (11 loc) • 364 B
TypeScript
export default 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;
}