mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-09 19:51:47 +00:00
13 lines
214 B
Rust
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)
|
|
}
|
|
}
|
|
}
|