Expand description
Developer-focused error handling infrastructure built on thiserror.
Provides standardized error messages, common error patterns, and ergonomic helper functions.
use error_kit::CommonError;
let io_err = CommonError::io_error("Failed to read config file");
let timeout_err = CommonError::Timeout;