Track bundled vendor runtime sources
This commit is contained in:
14
vendor/ComfyUI/comfy_api_nodes/util/common_exceptions.py
vendored
Normal file
14
vendor/ComfyUI/comfy_api_nodes/util/common_exceptions.py
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
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()."""
|
||||
Reference in New Issue
Block a user