# IncompatibleClient

Raised when the Python client version is incompatible with the Fiddler platform version.

This exception occurs during connection initialization when the client library version is not compatible with the connected Fiddler platform version. This ensures that users are aware of version mismatches that could cause unexpected behavior or missing functionality.

The exception includes both the client version and server version in the error message to help users understand what versions are involved in the incompatibility.

## Examples

Handling version incompatibility:

```python
try:
    fdl.init(url="https://old-fiddler.com", token="token")

except IncompatibleClient as e:
    print(f"Version mismatch: {e.message}")
    # Upgrade client or contact administrator
```

Typical error message format:

```python
"Python Client version (3.8.0) is not compatible with your
Fiddler Platform version (3.5.0)."
```

## message *: str* *= 'Python Client version ({client\_version}) is not compatible with your Fiddler Platform version ({server\_version}).'*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fiddler.ai/api/fiddler-python-client-sdk/exceptions/incompatible-client.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
