alright 0.1.2

A Safe-running, error-free, error-transmission without loss, 0 `Any` and 0 `unsafe block` error handling system - Aiming to provide a better development experience for the application layer.
Documentation
pub mod modules;
pub use modules::*;

#[macro_export]
macro_rules! exceptions {
    ($($name:ident),+ $(,)?) => {
        $(
            #[derive(::alright_derive::Exception, Debug, Clone, ::serde::Serialize)]
            pub struct $name {
                pub property: Box<Property<$name>>,
            }

            impl ::std::default::Default for $name {
                fn default() -> Self {
                    Self {
                        property: ::std::boxed::Box::new(
                            ::alright::modules::types::property::Property
                            {
                                name: stringify!($name).to_string(),
                                ..Default::default()
                            }
                        ),
                    }
                }
            }
        )*
    };
}