1 2 3 4 5 6 7 8 9 10 11 12
use miette::Diagnostic; use thiserror::Error; #[derive(Error, Debug, Diagnostic)] pub enum GitRelatesTo { #[error("not timeout set")] #[diagnostic()] NoTimeoutSet, #[error("not relates to message set")] #[diagnostic()] NoRelatesToMessageSet, }