git-next/crates/git/src/fetch.rs

10 lines
198 B
Rust
Raw Normal View History

#[derive(Debug, derive_more::Display)]
pub enum Error {
UnableToOpenRepo(String),
NoFetchRemoteFound,
Connect(String),
Fetch(String),
Lock,
}
impl std::error::Error for Error {}