ConnError

API reference for ConnError

ConnError

Raised when a connection error occurs during HTTP requests.

This exception was used to indicate general connection problems when trying to communicate with the Fiddler platform, such as network unreachability, DNS resolution failures, or connection refused errors.

This class is deprecated and not thrown anymore. The client now handles connection errors through the underlying HTTP client with automatic retry mechanisms and more specific error reporting.

Parameters

message (str)

Examples

Historical usage (now deprecated):

    try:
        # Network API call
  pass

except ConnError as e:
print(f”Connection failed: {e.message}”)
# Check network connectivity or URL configuration

message : str = 'Unable to reach the given endpoint'

Last updated

Was this helpful?