LastSubsystemErrorProcedure (System function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 15: Line 15:


==See also==
==See also==
<ul>
<li><var>[[LastSubsystemErrorFile (System function)|LastSubsystemErrorFile]]</var>
<li><var>[[LastSubsystemErrorSubsystem (System function)|LastSubsystemErrorSubsystem]]</var>
</ul>
{{Template:System:LastSubsystemErrorProcedure footer}}
{{Template:System:LastSubsystemErrorProcedure footer}}

Revision as of 16:35, 26 June 2012

The last subsystem error procedure (System class)

[Introduced in Sirius Mods 7.8]


This method identifies the procedure that forced a transfer to the APSY error procedure. This gives the error procedure a better idea of where things went wrong so it can provide better logging and diagnostics.

Syntax

%string = %(System):LastSubsystemErrorProcedure

Syntax terms

%stringA string to contain the returned procedure name.
%(System) The class name in parentheses denotes a shared method. LastSubsystemErrorProcedure can also be invoked via a System object variable, which may be null.

See also