Skip to content

Exceptions

Module for all the transformers exceptions.

UnsupportedStreamingTransformerException

Bases: Exception

Exception for when a user requests a transformer not supported in streaming.

Source code in mkdocs/lakehouse_engine/packages/transformers/exceptions.py
class UnsupportedStreamingTransformerException(Exception):
    """Exception for when a user requests a transformer not supported in streaming."""

    pass

WrongArgumentsException

Bases: Exception

Exception for when a user provides wrong arguments to a transformer.

Source code in mkdocs/lakehouse_engine/packages/transformers/exceptions.py
4
5
6
7
class WrongArgumentsException(Exception):
    """Exception for when a user provides wrong arguments to a transformer."""

    pass