UnknownStatistic class: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
m (edits, tags and links)
Line 1: Line 1:
<!-- UnknownStatistic class -->
<!-- UnknownStatistic class -->
The <var>UnknownStatistic</var> exception class describes an exception associated with
The <var>UnknownStatistic</var> exception class describes an exception associated with finding a string identifier that is not a valid or not an appropriate <var class="product">Model 204</var> statistic name.
finding a string identifier that is not a valid or not an appropriate
<var class="product">Model 204</var> statistic name.
   
   
To produce an <var>UnknownStatistic</var> exception, you typically use a User Language
To produce an <var>UnknownStatistic</var> exception for yourself, you typically use a User Language <var>[[Throw]]</var> statement with the <var>[[New (UnknownStatistic constructor)|New]]</var> <var>UnknownStatistic</var> constructor. For example, the following statement throws an <var>UnknownStatistic</var> exception for the value <code>ABCD</code>:
<var>Throw</var> statement with the <var>[[New (UnknownStatistic constructor)|New]]</var>
<p class="code">   throw %(unknownStatistic):new(Name='abcd')
<var>UnknownStatistic</var> constructor.
For example, the following statement throws an <var>UnknownStatistic</var> exception
for the value <code>ABCD</code>:
<p class="code"> throw %(unknownStatistic):new(Name='abcd')
</p>
</p>
   
   
In addition to the <var>New</var> constructor that creates an object instance,
In addition to the <var>New</var> constructor that creates an object instance, the class includes a <var>[[Name_(UnknownStatistic_property)|Name]]</var> property that returns the invalid statistic name.
the class includes a <var>Name</var> property that returns the invalid statistic name.
   
   
The methods in this class are listed at "[[List of UnknownStatistic methods]]".
The methods in this class are listed at "[[List of UnknownStatistic methods]]".  
[[Category:System exception classes]]
[[Category:System exception classes]]
   
   
The <var>UnknownStatistic</var> class is available as of <var class="product">Sirius Mods</var> version 7.3.
The <var>UnknownStatistic</var> class is available as of <var class="product">Sirius Mods</var> version 7.3.

Revision as of 11:36, 24 April 2011

The UnknownStatistic exception class describes an exception associated with finding a string identifier that is not a valid or not an appropriate Model 204 statistic name.

To produce an UnknownStatistic exception for yourself, you typically use a User Language Throw statement with the New UnknownStatistic constructor. For example, the following statement throws an UnknownStatistic exception for the value ABCD:

throw %(unknownStatistic):new(Name='abcd')

In addition to the New constructor that creates an object instance, the class includes a Name property that returns the invalid statistic name.

The methods in this class are listed at "List of UnknownStatistic methods".

The UnknownStatistic class is available as of Sirius Mods version 7.3.