summaryrefslogtreecommitdiff
path: root/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/error.rs b/src/error.rs
index 784aad6a..afb1dc83 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -179,18 +179,18 @@ fn _serialize(e: &impl serde::Serialize, _msg: &str) -> String {
fn _api_error(_: &impl std::any::Any, msg: &str) -> String {
let json = json!({
- "Message": msg,
+ "message": msg,
"error": "",
"error_description": "",
- "ValidationErrors": {"": [ msg ]},
- "ErrorModel": {
- "Message": msg,
- "Object": "error"
+ "validationErrors": {"": [ msg ]},
+ "errorModel": {
+ "message": msg,
+ "object": "error"
},
- "ExceptionMessage": null,
- "ExceptionStackTrace": null,
- "InnerExceptionMessage": null,
- "Object": "error"
+ "exceptionMessage": null,
+ "exceptionStackTrace": null,
+ "innerExceptionMessage": null,
+ "object": "error"
});
_serialize(&json, "")
}