Exceptions Package defining all the Notifier custom exceptions. NotifierConfigException ¶ Bases: Exception Exception for when the notifier configuration is invalid. Source code in mkdocs/lakehouse_engine/packages/terminators/notifiers/exceptions.py 10 11 12 13class NotifierConfigException(Exception): """Exception for when the notifier configuration is invalid.""" pass NotifierNotFoundException ¶ Bases: Exception Exception for when the notifier is not found. Source code in mkdocs/lakehouse_engine/packages/terminators/notifiers/exceptions.py 4 5 6 7class NotifierNotFoundException(Exception): """Exception for when the notifier is not found.""" pass NotifierTemplateConfigException ¶ Bases: Exception Exception for when the notifier config is incorrect. Source code in mkdocs/lakehouse_engine/packages/terminators/notifiers/exceptions.py 22 23 24 25class NotifierTemplateConfigException(Exception): """Exception for when the notifier config is incorrect.""" pass NotifierTemplateNotFoundException ¶ Bases: Exception Exception for when the notifier is not found. Source code in mkdocs/lakehouse_engine/packages/terminators/notifiers/exceptions.py 16 17 18 19class NotifierTemplateNotFoundException(Exception): """Exception for when the notifier is not found.""" pass