mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-11 09:27:56 -04:00
14 lines
208 B
Python
14 lines
208 B
Python
|
|
|
||
|
|
class ClientException(Exception):
|
||
|
|
'''
|
||
|
|
Base Exceptions for sending notifications that fail
|
||
|
|
'''
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class Client(object):
|
||
|
|
'''
|
||
|
|
Base client for sending notifications.
|
||
|
|
'''
|
||
|
|
pass
|