TYBA






protocol.ErrorResponse

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.

ParameterOptionalMax AllowedDataTypeNotes
cidno1textclient id. used to track origin of any particular message
nmno1textname of error
csno1textcause of error
msgno1textmessage attached to error
debugno1textsimple 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>

 

back to index