Files
notifications-api/app/clients/cloudwatch/__init__.py
2023-05-04 07:56:24 -07:00

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.")