aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/program/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/src/program/error.rs')
-rw-r--r--mingling_core/src/program/error.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/mingling_core/src/program/error.rs b/mingling_core/src/program/error.rs
index a6874cf..03e9af6 100644
--- a/mingling_core/src/program/error.rs
+++ b/mingling_core/src/program/error.rs
@@ -1,9 +1,7 @@
use std::any::Any;
use std::fmt;
-use thiserror::Error;
/// Error type returned when a panic occurs during execution.
-#[derive(Error)]
pub struct ProgramPanic {
pub payload: Box<dyn Any + Send>,
}