error-kit 0.1.0

A comprehensive error handling library for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Developer-focused error handling infrastructure built on `thiserror`.
//!
//! Provides standardized error messages, common error patterns, and ergonomic helper functions.
//!
//! ```rust
//! use error_kit::CommonError;
//!
//! let io_err = CommonError::io_error("Failed to read config file");
//! let timeout_err = CommonError::Timeout;
//! ```

// Export modules for users who want access to internals
pub mod constructors;
pub mod messages;

// Re-export the main error type at the crate root for convenience
mod types;
pub use types::CommonError;