lakehouse_engine.algorithms.exceptions

Package defining all the algorithm custom exceptions.

 1"""Package defining all the algorithm custom exceptions."""
 2
 3
 4class ReconciliationFailedException(Exception):
 5    """Exception for when the reconciliation process fails."""
 6
 7    pass
 8
 9
10class NoNewDataException(Exception):
11    """Exception for when no new data is available."""
12
13    pass
14
15
16class SensorAlreadyExistsException(Exception):
17    """Exception for when a sensor with same sensor id already exists."""
18
19    pass
20
21
22class RestoreTypeNotFoundException(Exception):
23    """Exception for when the restore type is not found."""
24
25    pass
class ReconciliationFailedException(builtins.Exception):
5class ReconciliationFailedException(Exception):
6    """Exception for when the reconciliation process fails."""
7
8    pass

Exception for when the reconciliation process fails.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args
class NoNewDataException(builtins.Exception):
11class NoNewDataException(Exception):
12    """Exception for when no new data is available."""
13
14    pass

Exception for when no new data is available.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args
class SensorAlreadyExistsException(builtins.Exception):
17class SensorAlreadyExistsException(Exception):
18    """Exception for when a sensor with same sensor id already exists."""
19
20    pass

Exception for when a sensor with same sensor id already exists.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args
class RestoreTypeNotFoundException(builtins.Exception):
23class RestoreTypeNotFoundException(Exception):
24    """Exception for when the restore type is not found."""
25
26    pass

Exception for when the restore type is not found.

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