real-estate / project /bot /exceptions.py
brestok's picture
init
d0e0a14
raw
history blame contribute delete
318 Bytes
class ExceedQuotaException(Exception):
def __init__(self):
self.message = 'You cannot request more than 8 reports.'
super().__init__(self.message)
# class InvalidRowException(Exception):
# def __init__(self, message: str, row: int):
# self.message = message
# self.row = row
#