## exceptions.DataExportError


Error exporting data to a file.


Usage

``` python
exceptions.DataExportError(
    destination,
    reason=None,
    *args,
    **kwargs,
)
```


## Methods

| Name | Description |
|----|----|
| [__init__()](#__init__) | Initialize with details about the failed export. |

------------------------------------------------------------------------


#### \_\_init\_\_()


Initialize with details about the failed export.


Usage

``` python
__init__(destination, reason=None, *args, **kwargs)
```


##### Parameters


`destination: str`  
Output path that failed to write.

`reason: str | None = None`  
Optional human-readable reason for the failure. Default is None.

`*args: Any`  
Additional positional arguments forwarded to the base `Exception`.

`**kwargs: Any`  
Additional keyword arguments forwarded to the base `Exception`.
