//! Error handling for the ppd-rs library
//!
//! This module provides custom error types and a convenient Result type
//! for all operations in the ppd-rs library.
use Error;
/// Errors that can occur when using the ppd-rs library
/// A specialized Result type for ppd-rs operations
///
/// This type is used throughout the ppd-rs library for any operation
/// that can produce an error.
pub type Result<T> = Result;