Era.Common.NetworkMessage.ConsoleApi.RpcExceptionData
Description
Returned as a response to any other message in case of failure.
Contains localized error message.
Properties
Name |
JsonSchemaType |
Description |
cause |
string |
Localized error message to be displayed to the user. |
cause_webserver_resource_id |
string |
Do not use. Used in webconsole for relaying error messages from code which does not know current locale. |
Dual message (request/response)
No dual message.Referenced in messages
No references.JsonSchema
{
"title": "Era.Common.NetworkMessage.ConsoleApi.RpcExceptionData",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.NetworkMessage.ConsoleApi.RpcExceptionData"
],
"properties": {
"Era.Common.NetworkMessage.ConsoleApi.RpcExceptionData": {
"$ref": "#/definitions/RpcExceptionData"
}
},
"definitions": {
"RpcExceptionData": {
"additionalProperties": false,
"type": "object",
"properties": {
"cause": {
"type": "string"
},
"cause_webserver_resource_id": {
"type": "string"
}
}
}
}
}