Skip to content

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
class 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
7
class 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
class 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
class NotifierTemplateNotFoundException(Exception):
    """Exception for when the notifier is not found."""

    pass