---
title: RemoteExecutionError
sidebar_label: RemoteExecutionError
sidebar_position: 10
---

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

<!-- Generated by scripts/generate_sdk_reference.py. Do not edit directly. -->

# RemoteExecutionError

```python
from lium.sdk import RemoteExecutionError
```

Defined in `lium.sdk.exceptions`.

A function offloaded with ``@lium.machine`` did not return a result from the pod.

When the function raised, the caller sees the original exception type and this
error is its ``__cause__``; ``remote_traceback`` is the traceback from the pod.

```python
RemoteExecutionError(
    message: str,
    *,
    exception_type: str | None = None,
    remote_traceback: str = '',
    exit_code: int | None = None,
    stdout: str = '',
    stderr: str = ''
)
```

## Attributes

| Name | Type | Description |
| --- | --- | --- |
| `exception_type` |  |  |
| `remote_traceback` |  |  |
| `exit_code` |  |  |
| `stdout` |  |  |
| `stderr` |  |  |
