| 314 | |
| 315 | |
| 316 | class ConfigurationErrorHandler(FilteredExceptionHandler): |
| 317 | EXCEPTIONS_TO_HANDLE = ConfigurationError |
| 318 | RC = CONFIGURATION_ERROR_RC |
| 319 | |
| 320 | def _extract_error_info(self, exception): |
| 321 | return {'Code': 'Configuration', 'Message': str(exception)} |
| 322 | |
| 323 | |
| 324 | class NoRegionErrorHandler(FilteredExceptionHandler): |
no outgoing calls
no test coverage detected