LastSubsystemErrorFile (System function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{Template:System:LastSubsystemErrorFile subtitle}}
{{Template:System:LastSubsystemErrorFile subtitle}}
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==
==Syntax==
{{Template:System:LastSubsystemErrorFile syntax}}
{{Template:System:LastSubsystemErrorFile syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%string</th><td>string</td></tr>
<tr><th>%string</th>
<td>A string to contain the returned procedure name. </td></tr>
 
<tr><th><var>%(System)</var></th>
<tr><th><var>%(System)</var></th>
<td>The class name in parentheses denotes a [[Notation conventions for methods#Shared methods|shared]] method. <var>LastSubsystemErrorFile</var> can also be invoked via a <var>[[System_class|System]]</var> object variable, which may be <var>null</var>.</td></tr>
<td>The class name in parentheses denotes a [[Notation conventions for methods#Shared methods|shared]] method. <var>LastSubsystemErrorFile</var> can also be invoked via a <var>[[System_class|System]]</var> object variable, which may be <var>null</var>.</td></tr>
Line 11: Line 18:


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

Revision as of 15:23, 26 June 2012

The last subsystem error file (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):LastSubsystemErrorFile

Syntax terms

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

See also