(self, _secret, error: Exception)
| 298 | self.error_handling_mode = "ignore" |
| 299 | |
| 300 | def _get_traceback(self, _secret, error: Exception): |
| 301 | return format_traceback_html( |
| 302 | error, self.error_handling_mode, "FastAPI Debugger", "FastAPI" |
| 303 | ) |
| 304 | |
| 305 | def register_prune_error_handler(self, _secret, prune_errors): |
| 306 | if prune_errors: |
no test coverage detected