//! Error types for the neural inference library.
//!
//! This module contains specific error types used throughout the library,
//! avoiding generic error wrappers like `anyhow` or `Box<dyn Error>` for better
//! error handling and debugging.
pub use ;
pub use ValidationError;
/// Result type alias for operations that may fail with neural inference errors.
pub type Result<T> = Result;
/// Result type alias for validation operations.
pub type ValidationResult<T> = Result;