CLRERR
(Statement)
[Version 1.98 or later]
Clears the current error.
CLRERR
This statement clears the error that occurs currently.
This statement is exclusively executable from a supervisory task.
PROGRAM TSR1
|
|
------------
|
|
I1 = SYSSTATE
|
'Get the system status.
|
IF (I1 AND &H0082) THEN
|
'If a failure or warning occurs,
|
CLRERR
|
'clear the error.
|
END IF
|
|
------------
|
|
END
|
|