MSIR.0982

From m204wiki
Jump to navigation Jump to search

MSIR.0982  Exception On method token

This error is produced through incorrect use of the special case exception methods OnThrow and OnUncaught. The following examples are among the texts that might appear with this message:

  • The OnThrow or OnUncaught method is defined as a method type other than a subroutine, in which case the following message is produced:

    MSIR.0982: Exception On method must be a Subroutine

  • The OnThrow or OnUncaught method is cannot be defined as overridable, although its behavior is similar to an overridable method. In this case the following message is produced:

    MSIR.0982: Exception On method cannot be explicitly overridable

  • An OnThrow or OnUncaught method cannot be defined with a parameter list. In this case the following message is produced:

    MSIR.0982: Exception On method has an invalid parameter list

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