diff options
author | Cara Salter <cara@devcara.com> | 2022-04-23 21:31:34 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-04-23 21:31:34 -0400 |
commit | c06184b2ff121ad829db9cc65e92af56f66d442e (patch) | |
tree | 8345f4b4cb52e6ba3a861a3f1ec9e607443ab5b0 /src/errors.rs | |
parent | 013a7488c8d2d11daf2cb6184f7fe2d25f6da8a4 (diff) | |
download | solarlib-c06184b2ff121ad829db9cc65e92af56f66d442e.tar.gz solarlib-c06184b2ff121ad829db9cc65e92af56f66d442e.zip |
teach Houses how to download Vans
Diffstat (limited to 'src/errors.rs')
-rw-r--r-- | src/errors.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.rs b/src/errors.rs index 29f7f4f..3c261c7 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -14,5 +14,7 @@ pub enum Error { Allocation(String), #[error("I/O: {0}")] Io(#[from] std::io::Error), + #[error("Remote command error: {0}")] + RemoteCommand(String), } |