mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-14 09:12:06 -05:00
The Notify team needs to investigate when a notification is marked as failed. We will process the whole file and mark the notifications with the appropriate status, if any are failed an exception is raised. The exception will trigger a cloud watch error for the team to investigate.
4 lines
96 B
Python
4 lines
96 B
Python
class DVLAException(Exception):
|
|
def __init__(self, message):
|
|
self.message = message
|