hud-ai
Version:
Hud.ai API Client
12 lines • 393 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class HudAiError extends Error {
constructor(message, type = 'validation_error') {
super(message);
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.type = type;
}
}
exports.HudAiError = HudAiError;
//# sourceMappingURL=HudAiError.js.map