Product Information > JADE Error Messages and System Messages > 31700 through 31899 - Messaging Framework Errors > 31763 - Expected a semicolon between options

31763   Expected a semicolon between options

Cause

This error occurs if an options parameter passed to method has not separated one option from the next with a semicolon character. In the following code fragment, the second parameter of the beginMessage method of the JadeGenericQueue class does not have a semicolon between the parameters NoWait and Timeout=10000.

myQueue.beginMessage(msg, "Nowait Timeout=10000");
                       // Options parameter should be "Nowait;Timeout=10000"

Action

Correct your code.