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 #