ordinalsbot
Version:
Node.js library for OrdinalsBot API
12 lines • 370 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InscriptionError = void 0;
class InscriptionError extends Error {
constructor(message, name = "unknown", status) {
super(message);
this.name = name;
this.status = status;
}
}
exports.InscriptionError = InscriptionError;
//# sourceMappingURL=error.js.map