UNPKG

tryaii-mcp-server

Version:

TryAII MCP Server - 15+ AI models with comparison, cost tracking, and collective intelligence

19 lines 495 B
export class ValidationError extends Error { constructor(message) { super(message); this.name = 'ValidationError'; } } export class AuthenticationError extends Error { constructor(message) { super(message); this.name = 'AuthenticationError'; } } export class InsufficientBalanceError extends Error { constructor(message) { super(message); this.name = 'InsufficientBalanceError'; } } //# sourceMappingURL=CustomErrors.js.map