aboutsummaryrefslogtreecommitdiffstats
path: root/mumlib/src/error.rs
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2021-06-07 17:58:06 +0200
committerGustav Sörnäs <gustav@sornas.net>2021-06-07 17:58:06 +0200
commitc6d63f0b5c231bfc42128a670923a660fabd1835 (patch)
tree44af7c6c6937eda97a3f8bafb575b9d763d36aa3 /mumlib/src/error.rs
parentbe76c2aa51733a0cf495e92659fbcbe527f41149 (diff)
downloadmum-c6d63f0b5c231bfc42128a670923a660fabd1835.tar.gz
default send message to current channel if no channel specified
Diffstat (limited to 'mumlib/src/error.rs')
-rw-r--r--mumlib/src/error.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mumlib/src/error.rs b/mumlib/src/error.rs
index e88bd97..83f97b8 100644
--- a/mumlib/src/error.rs
+++ b/mumlib/src/error.rs
@@ -11,6 +11,7 @@ pub enum Error {
InvalidServerAddr(String, u16),
InvalidUsername(String),
InvalidServerPassword,
+ NotConnectedToChannel,
}
impl std::error::Error for Error {}
@@ -26,6 +27,7 @@ impl fmt::Display for Error {
}
Error::InvalidUsername(username) => write!(f, "Invalid username: {}", username),
Error::InvalidServerPassword => write!(f, "Invalid server password"),
+ Error::NotConnectedToChannel => write!(f, "Not connected to a channel"),
}
}
}