lighthouse/validator_client/src/error.rs

13 lines
214 B
Rust
Raw Normal View History

2019-06-03 23:38:13 +00:00
use error_chain::error_chain;
error_chain! {
links { }
errors {
SystemTimeError(t: String ) {
description("Error reading system time"),
display("SystemTimeError: '{}'", t)
}
}
}