summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/errors.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/errors.rs b/cli/errors.rs
index b09c3c01a..bd5793430 100644
--- a/cli/errors.rs
+++ b/cli/errors.rs
@@ -70,12 +70,13 @@ pub(crate) fn get_error_class_name(e: &AnyError) -> &'static str {
.map(get_resolution_error_class)
})
.unwrap_or_else(|| {
- panic!(
+ eprintln!(
"Error '{}' contains boxed error of unknown type:{}",
e,
e.chain()
.map(|e| format!("\n {:?}", e))
.collect::<String>()
);
+ "Error"
})
}