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) • 504 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthenticationError = void 0;
const base_1 = require("./base");
class AuthenticationError extends base_1.RecallrAIError {
constructor(message = "Invalid API key or authentication failed.", httpStatus = 401) {
super(message, httpStatus);
this.name = "AuthenticationError";
Object.setPrototypeOf(this, AuthenticationError.prototype);
}
}
exports.AuthenticationError = AuthenticationError;