//! 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
// Re-export the main error type at the crate root for convenience
pub use CommonError;