(self, message: str)
| 88 | """Exception raised when AWS resource limits are exceeded.""" |
| 89 | |
| 90 | def __init__(self, message: str): |
| 91 | super().__init__(message, "Request a limit increase from AWS or delete unused resources.") |
| 92 | |
| 93 | |
| 94 | class AWSBaseService: |