context_error 0.2.0

Library to create rich errors to help users understand what the error was and how to fix it
Documentation
//! Contain the definition for errors with all additional data that is needed to generate nice error messages

/// A boxed variant of the error, to ensure a small stack space
mod boxed_error;
/// Wrapping the colored functionality
mod coloured;
/// Helper methods to merge identical errors
mod combine;
/// The context of an error
mod context;
/// An error with all its properties
mod custom_error;
/// Payload trait for error payloads
mod error_content;
/// A trait to define errors
mod error_create;
/// Trait for error kinds/payloads
mod error_kind;
/// A highlight on a line
mod highlight;

pub use boxed_error::*;
use coloured::*;
pub use combine::*;
pub use context::*;
pub use custom_error::*;
pub use error_content::*;
pub use error_create::*;
pub use error_kind::*;
pub use highlight::*;