summaryrefslogtreecommitdiff
path: root/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/errors.rs b/src/errors.rs
index 97ed8d8..19a758d 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -2,6 +2,9 @@ use std::path::PathBuf;
#[derive(Debug, thiserror::Error)]
pub enum BumperError {
+ #[error("Tag pattern is not ASCII: {0}")]
+ TagPatternNotAscii(String),
+
#[error("Can't figure out what kind of project: {0}")]
UnknownProjectKind(PathBuf),