diff --git a/src/error.rs b/src/error.rs index 642a7fe..c406505 100644 --- a/src/error.rs +++ b/src/error.rs @@ -11,7 +11,13 @@ pub enum Error { Notify(notify::Error), } -impl StdError for Error {} +impl StdError for Error { + fn description (&self) -> &str { + // This method is soft-deprecated and shouldn't be used, + // see Display for the actual description. + "a watchexec error" + } +} impl From for Error { fn from(err: globset::Error) -> Self {