File size: 318 Bytes
d0e0a14
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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
#