Exception raised when input validation fails.
| 70 | |
| 71 | |
| 72 | class ValidationError(AWSServiceError): |
| 73 | """Exception raised when input validation fails.""" |
| 74 | |
| 75 | def __init__(self, message: str): |
| 76 | super().__init__(message, "Check the input parameters and ensure they meet the requirements.") |
| 77 | |
| 78 | |
| 79 | class RateLimitError(AWSServiceError): |