Skip to content

Exceptions

Package defining all the algorithm custom exceptions.

NoNewDataException

Bases: Exception

Exception for when no new data is available.

Source code in mkdocs/lakehouse_engine/packages/algorithms/exceptions.py
class NoNewDataException(Exception):
    """Exception for when no new data is available."""

    pass

ReconciliationFailedException

Bases: Exception

Exception for when the reconciliation process fails.

Source code in mkdocs/lakehouse_engine/packages/algorithms/exceptions.py
4
5
6
7
class ReconciliationFailedException(Exception):
    """Exception for when the reconciliation process fails."""

    pass

RestoreTypeNotFoundException

Bases: Exception

Exception for when the restore type is not found.

Source code in mkdocs/lakehouse_engine/packages/algorithms/exceptions.py
class RestoreTypeNotFoundException(Exception):
    """Exception for when the restore type is not found."""

    pass

SensorAlreadyExistsException

Bases: Exception

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

Source code in mkdocs/lakehouse_engine/packages/algorithms/exceptions.py
class SensorAlreadyExistsException(Exception):
    """Exception for when a sensor with same sensor id already exists."""

    pass