Create a change store error. # Arguments `err` - The underlying error from the change store # Example ```rust use atomic_core::output::repo::OutputError; let err = OutputError::change_store(std::io::Error::new( std::io::ErrorKind::NotFound, "change not found" )); assert!(err.to_string().contains("Change store")); ```
(err: E)
| 168 | /// assert!(err.to_string().contains("Change store")); |
| 169 | /// ``` |
| 170 | pub fn change_store<E>(err: E) -> Self |
| 171 | where |
| 172 | E: std::error::Error + Send + Sync + 'static, |
| 173 | { |
| 174 | Self::ChangeStore(Box::new(err)) |
| 175 | } |
| 176 | |
| 177 | /// Create a graph error. |
| 178 | /// |
nothing calls this directly
no test coverage detected