//! Error handling module for the Brylix framework.
//!
//! Provides type-safe error handling with proper GraphQL error codes.
//!
//! # Usage
//!
//! ```rust
//! use brylix::errors::{DomainError, DomainResult, gql_from_domain};
//!
//! fn get_user(id: i64) -> DomainResult<User> {
//! users.find_by_id(id)
//! .ok_or(DomainError::NotFound(format!("User {} not found", id)))
//! }
//!
//! // In GraphQL resolver:
//! let user = get_user(id).map_err(gql_from_domain)?;
//! ```
pub use ;
pub use ;
pub use ;