summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bindings.rs3
-rw-r--r--src/error.rs8
2 files changed, 4 insertions, 7 deletions
diff --git a/src/bindings.rs b/src/bindings.rs
index a6f96ca..5db63c9 100644
--- a/src/bindings.rs
+++ b/src/bindings.rs
@@ -171,7 +171,8 @@ impl Binding {
) -> Result<Binding, SubplotError> {
let regex = RegexBuilder::new(&format!("^{}$", pattern))
.case_insensitive(!case_sensitive)
- .build()?;
+ .build()
+ .map_err(|err| SubplotError::Regex(pattern.to_string(), err))?;
// For every named capture, ensure we have a known type for it.
// If the type is missing from the map, we default to `text` which is
// the .* pattern
diff --git a/src/error.rs b/src/error.rs
index 5286410..8fdaeee 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -291,12 +291,8 @@ pub enum SubplotError {
///
/// Subplot uses regular expressions. This is a generic wrapper for
/// any kinds of errors related to that.
- #[error(transparent)]
- RegexError {
- /// The wrapped error.
- #[from]
- source: regex::Error,
- },
+ #[error("Failed to compile regular expression: {0:?}")]
+ Regex(String, #[source] regex::Error),
/// JSON error
///