lakehouse_engine.dq_processors.exceptions
Package defining all the DQ custom exceptions.
1"""Package defining all the DQ custom exceptions.""" 2 3 4class DQValidationsFailedException(Exception): 5 """Exception for when the data quality validations fail.""" 6 7 pass 8 9 10class DQCheckpointsResultsException(Exception): 11 """Exception for when the checkpoint results parsing fail.""" 12 13 pass 14 15 16class DQSpecMalformedException(Exception): 17 """Exception for when the DQSpec is malformed.""" 18 19 pass
class
DQValidationsFailedException(builtins.Exception):
5class DQValidationsFailedException(Exception): 6 """Exception for when the data quality validations fail.""" 7 8 pass
Exception for when the data quality validations fail.
Inherited Members
- builtins.Exception
- Exception
- builtins.BaseException
- with_traceback
- add_note
- args
class
DQCheckpointsResultsException(builtins.Exception):
11class DQCheckpointsResultsException(Exception): 12 """Exception for when the checkpoint results parsing fail.""" 13 14 pass
Exception for when the checkpoint results parsing fail.
Inherited Members
- builtins.Exception
- Exception
- builtins.BaseException
- with_traceback
- add_note
- args
class
DQSpecMalformedException(builtins.Exception):
17class DQSpecMalformedException(Exception): 18 """Exception for when the DQSpec is malformed.""" 19 20 pass
Exception for when the DQSpec is malformed.
Inherited Members
- builtins.Exception
- Exception
- builtins.BaseException
- with_traceback
- add_note
- args