Crate error_kit

Crate error_kit 

Source
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;

Modules§

constructors
messages

Enums§

CommonError