@sharplygroup/xtb-api-js
Version:
A module for interacting with the XTB API
13 lines • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.XtbApiError = void 0;
class XtbApiError extends Error {
errorCode;
constructor(message, errorCode) {
super(message);
this.errorCode = errorCode;
this.name = "XtbApiError";
}
}
exports.XtbApiError = XtbApiError;
//# sourceMappingURL=XtbApiError.js.map