aboutsummaryrefslogtreecommitdiff
path: root/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs2
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),
}