> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fiddler.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ConnTimeout

> Raised when a connection timeout occurs during HTTP requests.

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.

## Examples

Historical usage (now deprecated):

```python theme={null}
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
