protocol.ErrorResponse
This error message is returned in response to any request that fails for one reason or another. If the protocol is followed correctly then you should not see these messages. Debugging info is supplied which you should pass on to the dev team to help troubleshoot the problem.
Parameter | Optional | Max Allowed | DataType | Notes |
---|---|---|---|---|
cid | no | 1 | text | client id. used to track origin of any particular message |
nm | no | 1 | text | name of error |
cs | no | 1 | text | cause of error |
msg | no | 1 | text | message attached to error |
debug | no | 1 | text | simple debug info like simple stack trace, etc |
Example xml:
<siresp> <cid>Mum</cid> <fn> <error> <nm>NumberFormatException</nm> <cs>SomeCauseException</cs> <msg>supplied player id was not numeric</msg> <debug></debug> </error> </fn> </siresp>