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)
|
|
}
|
|
}
|
|
}
|