Error Messages/40640

< Error Messages
Revision as of 17:32, 22 January 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = In call to function Make_widgets, the first parameter, num, whould be greater than or equal to zero. = Cause = You passed a non negative value as a…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Error Message Examples

In call to function Make_widgets, the first parameter, num, whould be greater than or equal to zero.

Cause

You passed a non negative value as a parameter to a function that expects the parameter to be a non negative number.

The following function expects the first parameter, num, to be a non negative number and throws this error when a negative number, text, reference or handle is passed to the function.

Function Make_widgets( num: nonnegative; type: text)

Go here for more information on function parameter qualifiers.


Remedies

Correct the parameter passed to the function to be a non negative number.




You are not allowed to post comments.

Comments
<comments />