Skip to content

Exceptions

Package defining all the DQ custom exceptions.

DQCheckpointsResultsException

Bases: Exception

Exception for when the checkpoint results parsing fail.

Source code in mkdocs/lakehouse_engine/packages/dq_processors/exceptions.py
class DQCheckpointsResultsException(Exception):
    """Exception for when the checkpoint results parsing fail."""

    pass

DQDuplicateRuleIdException

Bases: Exception

Exception for when a duplicated rule id is found.

Source code in mkdocs/lakehouse_engine/packages/dq_processors/exceptions.py
class DQDuplicateRuleIdException(Exception):
    """Exception for when a duplicated rule id is found."""

    pass

DQSpecMalformedException

Bases: Exception

Exception for when the DQSpec is malformed.

Source code in mkdocs/lakehouse_engine/packages/dq_processors/exceptions.py
class DQSpecMalformedException(Exception):
    """Exception for when the DQSpec is malformed."""

    pass

DQValidationsFailedException

Bases: Exception

Exception for when the data quality validations fail.

Source code in mkdocs/lakehouse_engine/packages/dq_processors/exceptions.py
4
5
6
7
class DQValidationsFailedException(Exception):
    """Exception for when the data quality validations fail."""

    pass