Skip to content

graflo.db.bulk_exc

Exceptions for optional bulk-ingestion features (not all backends support them).

UnsupportedBulkLoad

Bases: NotImplementedError

Raised when native bulk load is requested but the connection flavor does not implement it.

Source code in graflo/db/bulk_exc.py
4
5
6
7
8
class UnsupportedBulkLoad(NotImplementedError):
    """Raised when native bulk load is requested but the connection flavor does not implement it."""

    def __init__(self, message: str) -> None:
        super().__init__(message)