A library for the construction of efficient single use static/dynamic error types per callsite.
toml
[dependencies]
adhocerr = "0.1"
Creating a root cause error:
```rust use adhocerr::err;
fn getgitroot(start: &Path) -> Result
Wrapping another Error:
```rust use adhocerr::wrap;
fn recordsuccess() -> Result<(), impl Error + 'static> { std::fs::write(".success", "true").maperr(wrap!("Failed to save results of script")) } ```
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.