cdumay_error
A collection of standard error types and error kinds commonly used in Rust applications.
This crate provides predefined error types and kinds using the cdumay_core framework.
Features
- Common error types for IO operations and unexpected errors
- Easy integration with the
cdumay_coreframework
Examples
use ;
use Path;
use Result;
// Creating a FileNotExists error
// Using Unexpected error for runtime errors
// Note: We use From<std::result::Result> to return cdumay_core::Result
Error Handling
All errors implement the Into<Error>, providing consistent error handling across your application:
use FileRead;
use Result;