mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-23 00:41:35 -05:00
26 lines
570 B
Python
26 lines
570 B
Python
from app.clients import (Client, ClientException)
|
|
|
|
|
|
class SmsClientResponseException(ClientException):
|
|
'''
|
|
Base Exception for SmsClientsResponses
|
|
'''
|
|
|
|
def __init__(self, message):
|
|
self.message = message
|
|
|
|
def __str__(self):
|
|
return "Message {}".format(self.message)
|
|
|
|
|
|
class SmsClient(Client):
|
|
'''
|
|
Base Sms client for sending smss.
|
|
'''
|
|
|
|
def send_sms(self, *args, **kwargs):
|
|
raise NotImplementedError('TODO Need to implement.')
|
|
|
|
def get_name(self):
|
|
raise NotImplementedError('TODO Need to implement.')
|