ts-midtrans-client
Version:
This library is an UNOFFICIAL TypeScript version of the Midtrans Client - Node.js.
21 lines (20 loc) • 827 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MidtransError = void 0;
/**
* Custom HTTP Error Class that also expose httpStatusCode, ApiResponse, rawHttpClientData
* To expose more info for lib user
*/
class MidtransError extends Error {
constructor(message, httpStatusCode = null, ApiResponse = null, rawHttpClientData = null) {
super(message);
// Ensure the name of this error is the same as the class name
this.name = this.constructor.name;
this.httpStatusCode = httpStatusCode;
this.ApiResponse = ApiResponse;
this.rawHttpClientData = rawHttpClientData;
// This clips the constructor invocation from the stack trace.
Error.captureStackTrace(this, this.constructor);
}
}
exports.MidtransError = MidtransError;