memscope_rs/error/mod.rs
1//! Unified error handling system for MemScope
2//!
3//! Provides comprehensive error types and handling patterns for all modules.
4//! Features structured error reporting, error chaining, and recovery strategies.
5
6pub mod handler;
7pub mod recovery;
8pub mod types;
9
10pub use handler::{ErrorHandler, ErrorReporter};
11pub use recovery::{RecoveryAction, RecoveryStrategy};
12pub use types::{ErrorContext, ErrorKind, ErrorSeverity, MemScopeError};