Handling Error Messages

RepConnector sends any errors it encounters while processing an event to your Configure Status message queue. When you receive an error message from the queue, parse the error message for the eventId, errorCode, and the message itself.

For example:
System.out.println("Error EventId:"+
   RaXMLBuilder.getErrorEventId(err));
System.out.println("Error StatusCode:"+
   RaXMLBuilder.getErrorStatusCode(err));
System.out.println("Error Message:"+
      RaXMLBuilder.getErrorMessage(err));