| 14 | |
| 15 | |
| 16 | class RetriesExceededError(Exception): |
| 17 | def __init__(self, last_exception, msg='Max Retries Exceeded'): |
| 18 | super().__init__(msg) |
| 19 | self.last_exception = last_exception |
| 20 | |
| 21 | |
| 22 | class S3UploadFailedError(Exception): |
no outgoing calls
no test coverage detected