mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 19:03:30 -05:00
9 lines
207 B
Python
9 lines
207 B
Python
class AdminApiClientException(Exception):
|
|
def __init__(self, message):
|
|
self.value = message
|
|
|
|
|
|
class NoDataFoundException(Exception):
|
|
def __init__(self, message):
|
|
self.value = message
|