2024-05-18 11:41:18 +01:00
|
|
|
#[derive(Debug, derive_more::Display)]
|
2024-05-03 17:50:50 +01:00
|
|
|
pub enum Error {
|
2024-05-18 11:41:18 +01:00
|
|
|
UnableToOpenRepo(String),
|
2024-05-03 17:50:50 +01:00
|
|
|
NoFetchRemoteFound,
|
2024-05-18 11:41:18 +01:00
|
|
|
Connect(String),
|
2024-05-03 17:50:50 +01:00
|
|
|
Fetch(String),
|
2024-05-18 11:41:18 +01:00
|
|
|
Lock,
|
2024-05-03 17:50:50 +01:00
|
|
|
}
|
|
|
|
impl std::error::Error for Error {}
|