Nesting of PARAM is not allowed

The PARAM keyword may not be nested. Example:

default:
  param MyParam
    param YourParam

Put all parameter definitions after each other to correct this. Example:

default:
  param MyParam
  endparam
  param YourParam
  endparam

See Also
Errors