7 lines
223 B
Python
7 lines
223 B
Python
""" Notification-related exceptions. """
|
|
|
|
|
|
class InvalidNotificationTypeError(Exception):
|
|
""" Exception raised when an invalid notification type is passed. """
|
|
pass # lint-amnesty, pylint: disable=unnecessary-pass
|