Skip to content

exceptions

EmptyDataframeError

Bases: Exception

When a dataframe is empty when it should not be.

Source code in src/cloe_nessy/integration/writer/delta_writer/exceptions.py
1
2
3
4
class EmptyDataframeError(Exception):
    """When a dataframe is empty when it should not be."""

    pass