Skip to main content

torrust_tracker_deployer_lib/shared/error/
mod.rs

1//! Error handling utilities
2//!
3//! This module provides shared error handling utilities including
4//! the `Traceable` trait for generating detailed error traces and
5//! the `ErrorKind` enum for high-level error categorization.
6
7pub mod kind;
8pub mod traceable;
9
10pub use kind::ErrorKind;
11pub use traceable::Traceable;