mirror of
https://github.com/haraldh/chainerror.git
synced 2025-01-31 00:56:41 +01:00
29 lines
507 B
Rust
29 lines
507 B
Rust
use chainerror::*;
|
|
|
|
use std::error::Error;
|
|
use std::io;
|
|
use std::result::Result;
|
|
|
|
fn do_some_io() -> Result<(), Box<Error>> {
|
|
Err(io::Error::from(io::ErrorKind::NotFound))?;
|
|
Ok(())
|
|
}
|
|
|
|
fn func2() -> Result<(), Box<Error>> {
|
|
if let Err(e) = do_some_io() {
|
|
Err(cherr!(e, "func2 error"))?;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn func1() -> Result<(), Box<Error>> {
|
|
if let Err(e) = func2() {
|
|
Err(cherr!(e, "func1 error"))?;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn main() -> Result<(), Box<Error>> {
|
|
func1()
|
|
}
|