Create timeout error with operation context
(operation: &str, duration_ms: u64, message: &str)
| 222 | |
| 223 | /// Create timeout error with operation context |
| 224 | pub(crate) fn timeout_error(operation: &str, duration_ms: u64, message: &str) -> PyErr { |
| 225 | let error = PythonBindingError::Timeout { |
| 226 | message: message.to_string(), |
| 227 | operation: operation.to_string(), |
| 228 | duration_ms, |
| 229 | }; |
| 230 | python_error_to_py_err(error) |
| 231 | } |
no test coverage detected