(error_message, source_exception=None)
| 67 | |
| 68 | |
| 69 | def _handle_error(error_message, source_exception=None): |
| 70 | if features.ERROR_ON_USER_DATA_FAILURE: |
| 71 | raise RuntimeError(error_message) from source_exception |
| 72 | else: |
| 73 | LOG.warning(error_message) |
| 74 | |
| 75 | |
| 76 | class UserDataProcessor: |
no outgoing calls
no test coverage detected