mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2025-12-08 21:44:33 +08:00
* feat(api-nodes): implement new API client for V3 nodes * feat(api-nodes): implement new API client for V3 nodes * feat(api-nodes): implement new API client for V3 nodes * converted WAN nodes to use new client; polishing * fix(auth): do not leak authentification for the absolute urls * convert BFL API nodes to use new API client; remove deprecated BFL nodes * converted Google Veo nodes * fix(Veo3.1 model): take into account "generate_audio" parameter
15 lines
482 B
Python
15 lines
482 B
Python
class NetworkError(Exception):
|
|
"""Base exception for network-related errors with diagnostic information."""
|
|
|
|
|
|
class LocalNetworkError(NetworkError):
|
|
"""Exception raised when local network connectivity issues are detected."""
|
|
|
|
|
|
class ApiServerError(NetworkError):
|
|
"""Exception raised when the API server is unreachable but internet is working."""
|
|
|
|
|
|
class ProcessingInterrupted(Exception):
|
|
"""Operation was interrupted by user/runtime via processing_interrupted()."""
|