diff options
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs index 7f058b83..51afffa9 100644 --- a/src/error.rs +++ b/src/error.rs @@ -47,6 +47,7 @@ use diesel::result::Error as DieselError; use jsonwebtoken::errors::Error as JwtError; use serde_json::{Error as SerError, Value}; use u2f::u2ferror::U2fError as U2fErr; +use std::io::Error as IOError; // Error struct // Each variant has two elements, the first is an error of different types, used for logging purposes @@ -64,6 +65,7 @@ make_error! { U2fError(U2fErr, _): true, _api_error, SerdeError(SerError, _): true, _api_error, JWTError(JwtError, _): true, _api_error, + IoErrror(IOError, _): true, _api_error, //WsError(ws::Error, _): true, _api_error, } |