(err: std::io::Error)
| 52 | |
| 53 | impl From<std::io::Error> for CatalogError { |
| 54 | fn from(err: std::io::Error) -> Self { |
| 55 | CatalogError::IoError(err.to_string()) |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | impl From<serde_json::Error> for CatalogError { |
nothing calls this directly
no test coverage detected