exceptions.DataExportError
Error exporting data to a file.
Usage
exceptions.DataExportError()Methods
| Name | Description |
|---|---|
| __init__() | Initialize with details about the failed export. |
__init__()
Initialize with details about the failed export.
Usage
__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.