ConnTimeout

API reference for ConnTimeout

ConnTimeout

Raised when a connection timeout occurs during HTTP requests.

This exception was used to indicate that an HTTP request to the Fiddler platform timed out while waiting for a response. Timeouts can occur due to network issues, server overload, or requests taking longer than the configured timeout period.

This class is deprecated and not thrown anymore. The client now handles timeouts through the underlying HTTP client with automatic retry mechanisms.

Parameters

message (str)

Examples

Historical usage (now deprecated):

    try:
        # Long-running API call
  pass

except ConnTimeout as e:
print(f”Request timed out: {e.message}”)
# Retry with longer timeout or check network

message : str = 'Request timed out while trying to reach endpoint'

Last updated

Was this helpful?