Product Information > JADE Error Messages and System Messages > 31700 through 31899 - Messaging Framework Errors > 31737 - Option must not have value

31737   Option must not have value

Cause

This error occurs if an option is provided that is expected not to specify a value and one is provided. In the following example, the second parameter of the beginMessage method of the JadeGenericQueue class provides a value for the NoWait option. (The option should simply be specified as "NoWait".)

myQueue.beginMessage(msg, "NoWait=true");

Action

Correct your code.