lib/error_handler library
A centralized error handling and operation execution library.
This library provides a unified interface for monadic result wrappers, operational boundary executors, and error monitoring handlers, abstracting the internal project file structure from external consumer packages.
Classes
- ErrorHandler
- A bootstrapping coordinator responsible for orchestrating the application's global error tracking lifecycle.
-
Result<
T> -
A sealed monadic wrapper representing the outcome of an operation that can either
be a successful evaluation (
_SuccessResult) or a structural breakdown (_FailureResult). - ResultExecutor
- A centralized execution wrapper engine responsible for intercepting exceptions and standardizing operational outputs.