// Copyright (c) 2021 Soni L. // // Licensed under the MIT license. // Documentation and comments licensed under CC BY-SA 4.0. // see rationale in tests/*.rs #![warn(non_snake_case)] pub mod errorfunc; pub mod errorpanic; pub use self::errorfunc::ErrorCall; pub use self::errorfunc::ErrorFunc; pub use self::errorfunc::ErrorType; pub use self::errorpanic::ErrorPanic;