Product Information > JADE Error Messages and System Messages > 31700 through 31899 - Messaging Framework Errors > 31716 - Option name not recognized

31716   Option name not recognized

Cause

This error occurs if the options parameter passed to method is not recognized. In the following example, the second parameter of the beginMessage method of the JadeGenericQueue class has incorrectly been entered as Nowait instead of NoWait.

myQueue.beginMessage(msg, "Nowait");  // Option should be "NoWait"

Action

Correct your code.