@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
30 lines (26 loc) • 960 B
text/typescript
/**
* ComfyUI Internal Error System
*
* All ComfyUI internal layers (config, workflow, utils, services) should use these
* internal error classes instead of framework errors to maintain proper
* architectural boundaries.
*
* File organization:
* - base.ts: Base error class
* - configError.ts: Configuration layer errors
* - workflowError.ts: Workflow layer errors
* - utilsError.ts: Utility layer errors
* - servicesError.ts: Service layer errors
* - modelResolverError.ts: Model resolver specific errors
* - typeGuards.ts: Type guard utilities
*/
// Base class
export { ComfyUIInternalError } from './base';
// Error classes
export { ConfigError } from './configError';
export { ModelResolverError } from './modelResolverError';
export { ServicesError } from './servicesError';
export { UtilsError } from './utilsError';
export { WorkflowError } from './workflowError';
// Type guards
export { isComfyUIInternalError } from './typeGuards';