Add SystemTimeError to core error enum.
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
e9d0baa32e
commit
d3dbe09380
1 changed files with 2 additions and 0 deletions
|
|
@ -29,6 +29,8 @@ pub enum Error {
|
|||
#[error(transparent)]
|
||||
Std(#[from] Box<dyn std::error::Error + Send>),
|
||||
#[error(transparent)]
|
||||
SystemTime(#[from] std::time::SystemTimeError),
|
||||
#[error(transparent)]
|
||||
ThreadAccessError(#[from] std::thread::AccessError),
|
||||
#[error(transparent)]
|
||||
TryFromInt(#[from] std::num::TryFromIntError),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue