//! Parser error types for ASS script parsing
//!
//! Provides comprehensive error handling for ASS subtitle script parsing with
//! detailed error messages and recovery information for interactive editing.
//!
//! # Error Philosophy
//!
//! - Prefer recovery over failure where possible
//! - Provide detailed location information for editor integration
//! - Group related errors for efficient handling
//! - Include suggestions for common mistakes
//!
//! # Module Organization
//!
//! - `parse_error` - Unrecoverable parsing errors
//! - `parse_issue` - Recoverable issues and warnings
//! - `parse_result` - Result types for error handling
pub use ParseError;
pub use ;
pub use ;