mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-22 13:16:39 +00:00
Change error response to be closer to upstream
This commit is contained in:
parent
f2078a3849
commit
ce4fedf191
15
src/util.rs
15
src/util.rs
@ -6,17 +6,18 @@ macro_rules! err {
|
|||||||
($err:expr, $msg:expr) => {{
|
($err:expr, $msg:expr) => {{
|
||||||
println!("ERROR: {}", $msg);
|
println!("ERROR: {}", $msg);
|
||||||
err_json!(json!({
|
err_json!(json!({
|
||||||
"Message": $err,
|
"error": $err,
|
||||||
"ValidationErrors": {
|
"error_description": $err,
|
||||||
"": [$msg,],
|
"ErrorModel": {
|
||||||
},
|
"Message": $msg,
|
||||||
|
"ValidationErrors": null,
|
||||||
"ExceptionMessage": null,
|
"ExceptionMessage": null,
|
||||||
"ExceptionStackTrace": null,
|
"ExceptionStackTrace": null,
|
||||||
"InnerExceptionMessage": null,
|
"InnerExceptionMessage": null,
|
||||||
"Object": "error",
|
"Object": "error"
|
||||||
}))
|
}}))
|
||||||
}};
|
}};
|
||||||
($msg:expr) => { err!("The model state is invalid", $msg) }
|
($msg:expr) => { err!("unknown_error", $msg) }
|
||||||
}
|
}
|
||||||
|
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
|
Loading…
Reference in New Issue
Block a user