n4.cuwo.messages.Error

In the case that the CUWO container or the workflow receive a message it does not understand, they will reply by sending an Error message.

The message has the following structure:

{
  "@type": "n4.cuwo.messages.Error",
  "id": "...",
  "originalMessage": "...",
  "errorMessage": "..."
}

The various member provide the information necessary for the operation:

  • id - The ID of the message that was not understood. If the container could not parse the message or the message did not contain an ID, this field has the value “null”.
  • originalMessage - The original message that was not understood.
  • errorMessage - An optional error message for helping to debug the error.