We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ee34fa commit 31dc767Copy full SHA for 31dc767
1 file changed
resources/sshdconfig/src/error.rs
@@ -9,10 +9,10 @@ use thiserror::Error;
9
pub enum SshdConfigError {
10
#[error("{t}: {0}", t = t!("error.command"))]
11
CommandError(String),
12
- #[error("{t}: {0}", t = t!("error.fmt"))]
13
- FmtError(#[from] std::fmt::Error),
14
#[error("{t}: {0}", t = t!("error.envVar"))]
15
EnvVarError(#[from] std::env::VarError),
+ #[error("{t}: {0}", t = t!("error.fmt"))]
+ FmtError(#[from] std::fmt::Error),
16
#[error("{t}: {0}", t = t!("error.invalidInput"))]
17
InvalidInput(String),
18
#[error("{t}: {0}", t = t!("error.io"))]
0 commit comments