mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-02 12:48:32 -04:00
13 lines
249 B
Python
13 lines
249 B
Python
class DVLAException(Exception):
|
|
def __init__(self, message):
|
|
super().__init__(message)
|
|
self.message = message
|
|
|
|
|
|
class NotificationTechnicalFailureException(Exception):
|
|
pass
|
|
|
|
|
|
class ArchiveValidationError(Exception):
|
|
pass
|