diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-05-15 23:52:12 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-05-15 23:52:12 +0800 |
| commit | aae29170dc7ae7a8976699c4d1f7011f9f238a06 (patch) | |
| tree | b15e73d4b73b23ed41df555f962cbcdfd2b254ad /mingling_core/src/program/error.rs | |
| parent | de448a04dc594f0938210abaa12de0e168f5741a (diff) | |
Remove thiserror dependency and implement error types manually
Diffstat (limited to 'mingling_core/src/program/error.rs')
| -rw-r--r-- | mingling_core/src/program/error.rs | 2 |
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>, } |
