mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 16:22:17 -05:00
9 lines
218 B
Python
9 lines
218 B
Python
class DVLAException(Exception):
|
|
def __init__(self, message):
|
|
self.message = message
|
|
|
|
|
|
class NotificationTechnicalFailureException(Exception):
|
|
def __init__(self, message):
|
|
self.message = message
|