Skip to content

exceptions

django_spire.notification.exceptions

NotificationError

InvalidNotificationTypeError

Bases: NotificationError

Source code in django_spire/notification/exceptions.py
def __init__(self, expected_type: NotificationTypeChoices, actual_type: NotificationTypeChoices) -> None:
    super().__init__(
        f'Expected notification type {expected_type}, '
        f'but received {actual_type}'
    )