File size: 319 Bytes
23b413b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """
ComfyUI service errors.
"""
from __future__ import annotations
class ComfyUIUnavailable(Exception):
"""ComfyUI is offline or unreachable."""
class ComfyUITimeout(Exception):
"""Workflow execution timed out."""
class ComfyUIWorkflowError(Exception):
"""Workflow returned an error from ComfyUI."""
|