add cancelled error message

This commit is contained in:
Gabriella Casap
2025-09-26 14:05:51 +01:00
parent b7729c5b9b
commit 5e4c381b84

View File

@@ -32,6 +32,9 @@ pub enum GurtError {
#[error("Client error: {0}")]
Client(String),
#[error("Cancelled")]
Cancelled,
}
pub type Result<T> = std::result::Result<T, GurtError>;