# Unsupported

Raised when an unsupported operation is attempted.

This exception occurs when users try to perform operations that are not supported by the current Fiddler platform configuration, client version, or specific model/dataset setup. This can include feature limitations, deprecated functionality, or operations not available for certain model types.

Common scenarios include attempting to use features not available in the current platform edition, trying deprecated API methods, or performing operations incompatible with the model's configuration.

## Examples

Handling unsupported operations:

```python
try:
    model.enable_advanced_feature()

except Unsupported as e:
    print(f"Feature not available: {e.message}")
    # Use alternative approach or upgrade platform
```

Common unsupported scenarios:

```python
- Using enterprise features on basic plans
- Attempting operations on incompatible model types
- Calling deprecated API methods
```

## message *: str* *= 'This operation is not supported'*


---

# 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/unsupported.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.
