lakehouse_engine.io.exceptions

Package defining all the io custom exceptions.

 1"""Package defining all the io custom exceptions."""
 2
 3
 4class IncrementalFilterInputNotFoundException(Exception):
 5    """Exception for when the input of an incremental filter is not found.
 6
 7    This may occur when tables are being loaded in incremental way, taking the increment
 8    definition out of a specific table, but the table still does not exist, mainly
 9    because probably it was not loaded for the first time yet.
10    """
11
12    pass
13
14
15class WrongIOFormatException(Exception):
16    """Exception for when a user provides a wrong I/O format."""
17
18    pass
19
20
21class NotSupportedException(RuntimeError):
22    """Exception for when a user provides a not supported operation."""
23
24    pass
class IncrementalFilterInputNotFoundException(builtins.Exception):
 5class IncrementalFilterInputNotFoundException(Exception):
 6    """Exception for when the input of an incremental filter is not found.
 7
 8    This may occur when tables are being loaded in incremental way, taking the increment
 9    definition out of a specific table, but the table still does not exist, mainly
10    because probably it was not loaded for the first time yet.
11    """
12
13    pass

Exception for when the input of an incremental filter is not found.

This may occur when tables are being loaded in incremental way, taking the increment definition out of a specific table, but the table still does not exist, mainly because probably it was not loaded for the first time yet.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args
class WrongIOFormatException(builtins.Exception):
16class WrongIOFormatException(Exception):
17    """Exception for when a user provides a wrong I/O format."""
18
19    pass

Exception for when a user provides a wrong I/O format.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args
class NotSupportedException(builtins.RuntimeError):
22class NotSupportedException(RuntimeError):
23    """Exception for when a user provides a not supported operation."""
24
25    pass

Exception for when a user provides a not supported operation.

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