mirror of
https://github.com/GSA/notifications-api.git
synced 2026-07-04 16:37:37 -04:00
26 lines
607 B
Python
26 lines
607 B
Python
from app.clients import Client, ClientException
|
|
|
|
|
|
class CloudwatchClientResponseException(ClientException):
|
|
"""
|
|
Base Exception for SmsClientsResponses
|
|
"""
|
|
|
|
def __init__(self, message):
|
|
self.message = message
|
|
|
|
def __str__(self):
|
|
return "Message {}".format(self.message)
|
|
|
|
|
|
class CloudwatchClient(Client):
|
|
"""
|
|
Base Cloudwatch client for checking sms.
|
|
"""
|
|
|
|
def init_app(self, *args, **kwargs):
|
|
raise NotImplementedError("TODO Need to implement.")
|
|
|
|
def check_sms(self, *args, **kwargs):
|
|
raise NotImplementedError("TODO Need to implement.")
|