//! Minimal error types for nika-core.
//!
//! Contains only the error variants needed by core binding modules.
//! The full NikaError enum lives in the `nika` crate and implements
//! `From<CoreError>` for seamless interop.
use Error;
/// Core error type for nika-core modules.
///
/// Kept intentionally minimal -- only variants required by pure-type
/// modules (binding/entry.rs) that were extracted from the main crate.