recallrai
Version:
Official Node.js SDK for RecallrAI - Revolutionary contextual memory system that enables AI assistants to form meaningful connections between conversations, just like human memory.
13 lines (12 loc) • 428 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValidationError = void 0;
const base_1 = require("./base");
class ValidationError extends base_1.RecallrAIError {
constructor(message, httpStatus) {
super(message, httpStatus);
this.name = "ValidationError";
Object.setPrototypeOf(this, ValidationError.prototype);
}
}
exports.ValidationError = ValidationError;