MSIR.0807 Can't declare (meth) after (meth) already invoked: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
m (add "Note")
Line 3: Line 3:
Make sure the class's <var>Public</var> or <var>Private</var> block is declared before any code that uses a <var>New</var> or <var>Discard</var> message.  
Make sure the class's <var>Public</var> or <var>Private</var> block is declared before any code that uses a <var>New</var> or <var>Discard</var> message.  
<blockquote>
<blockquote>
An <var>Auto New</var> setting on a variable declaration is considered an invocation of the <var>New</var> method, so an <var>Auto New</var> object should be declared after the <var>Public</var> and <var>Private</var> blocks for its class.
<b>Note:</b> An <var>Auto New</var> setting on a variable declaration is considered an invocation of the <var>New</var> method, so an <var>Auto New</var> object should be declared after the <var>Public</var> and <var>Private</var> blocks for its class.
</blockquote>
</blockquote>


{{Template:MSIR.0807 footer}}
{{Template:MSIR.0807 footer}}
[[Category:Sirius Mods messages]] [[Category:MSIR.0800 - MSIR.0999]]
[[Category:Sirius Mods messages]] [[Category:MSIR.0800 - MSIR.0999]]

Revision as of 18:40, 12 July 2016

A Constructor or Disallow statement in a Public or Private block specified a New or Discard method after such a method had already been explicitly invoked. Since these methods exist for all classes, whether or not they're declared, it is possible to use them before they are declared. However, as this message indicates, such a use is invalid.

Make sure the class's Public or Private block is declared before any code that uses a New or Discard message.

Note: An Auto New setting on a variable declaration is considered an invocation of the New method, so an Auto New object should be declared after the Public and Private blocks for its class.


Message attributes:

RETCODEO=0Sets online return code
RETCODEB=4Sets batch (single user) return code
CLASS=EError class; the message can be suppressed with the X'04' bit setting of the MSGCTL parameter
AUDITERWrites the message with line type ER to the audit trail
COUNTIncrements the error count (ERCNT) parameter
ECHODisplays the line that caused the error

Back to list of messages