lighthouse/validator_client/src/error.rs
2019-08-29 13:25:55 +10:00

13 lines
214 B
Rust

use error_chain::error_chain;
error_chain! {
links { }
errors {
SystemTimeError(t: String ) {
description("Error reading system time"),
display("SystemTimeError: '{}'", t)
}
}
}