blob: cb0c6f207623a75669f1d24bdae38472eef343d6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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;
|