lakehouse_engine.transformers.exceptions

Module for all the transformers exceptions.

 1"""Module for all the transformers exceptions."""
 2
 3
 4class WrongArgumentsException(Exception):
 5    """Exception for when a user provides wrong arguments to a transformer."""
 6
 7    pass
 8
 9
10class UnsupportedStreamingTransformerException(Exception):
11    """Exception for when a user requests a transformer not supported in streaming."""
12
13    pass
class WrongArgumentsException(builtins.Exception):
5class WrongArgumentsException(Exception):
6    """Exception for when a user provides wrong arguments to a transformer."""
7
8    pass

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

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args
class UnsupportedStreamingTransformerException(builtins.Exception):
11class UnsupportedStreamingTransformerException(Exception):
12    """Exception for when a user requests a transformer not supported in streaming."""
13
14    pass

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

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args