midtrans-client
Version:
Official Midtrans Payment API Client for Node JS
20 lines (18 loc) • 765 B
JavaScript
// ref: https://rclayton.silvrback.com/custom-errors-in-node-js
/**
* 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);
}
}
module.exports = MidtransError;