IncorrectDaemonState class: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
<!-- IncorrectDaemonState class -->
<!-- IncorrectDaemonState class -->
__NOTOC__
__NOTOC__
The <var>IncorrectDaemonState</var> exception class indicates that the state of the daemon thread was not correct for a method.  
The <var>IncorrectDaemonState</var> exception class indicates that the state of the daemon thread was not correct for a method.  
   
   
To produce a <var></var> exception for yourself, you typically use a <var class="product">User Language</var> [[Exceptions#Throwing exceptions|Throw]] statement calling the an <var>MaxDaemExceeded</var><var>[[New_(MaxDaemExceeded_constructor)|New]]</var> constructor:
To produce an <var></var> exception for yourself, you typically use a <var class="product">User Language</var> <var>[[Exceptions#Throwing exceptions|Throw]]</var> statement calling the <var>MaxDaemExceeded</var> <var>[[New_(MaxDaemExceeded_constructor)|New]]</var> constructor:
<p class="code"> throw %(maxDaemExceeded):new
<p class="code">throw %(maxDaemExceeded):new
</p>
</p>
   
   
The only method of the <var>IncorrectDaemonState</var> exception class is the <var>New</var> constructor.  The class has no properties.
The only method of the <var>IncorrectDaemonState</var> exception class is the <var>New</var> constructor.  The class has no properties.
    
    
This class is available as of <var class="product">[[Sirius Mods]]</var> Version 7.5.
This class is available as of <var class="product">[[Sirius Mods]]</var> Version 8.1.




Line 26: Line 25:
{{Template:IncorrectDaemonState:New subtitle}}
{{Template:IncorrectDaemonState:New subtitle}}


This method generates an instance of an <var>[[IncorrectDaemonState_class|IncorrectDaemonState]]</var> exception. The<var>New</var> method format is as follows:
This method generates an instance of an <var>[[IncorrectDaemonState_class|IncorrectDaemonState]]</var> exception. The <var>New</var> method format is as follows:


<h3>Syntax</h3>
<h3>Syntax</h3>
Line 33: Line 32:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%incorrectDaemonState</th>
<tr><th>%incorrectDaemonState</th>
<td>A reference to an instance of a <var>IncorrectDaemonState</var> object.</td></tr>
<td>A reference to an instance of an <var>IncorrectDaemonState</var> object.</td></tr>
<tr><th><var>%(IncorrectDaemonState)</var></th><td>The class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>. See [[#Usage notes|"Usage notes"]], below, for more information about invoking a <var>IncorrectDaemonState</var> <var>Constructor</var>.</td></tr>
<tr><th><var>%(IncorrectDaemonState)</var></th><td>The class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>. See [[#Usage notes|"Usage notes"]], below, for more information about invoking an <var>IncorrectDaemonState</var> <var>Constructor</var>.</td></tr>
</table>
</table>


<h3>Usage notes</h3>
<h3>Usage notes</h3>
<ul>
<ul>
<li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]],<var>New</var> can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is <var>Null</var>:<p class="code">%maxdaem = new
<li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]], <var>New</var> can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is <var>Null</var>:<p class="code">%maxdaem = new


%incorrectDaemonState = %(IncorrectDaemonState):new
%incorrectDaemonState = %(IncorrectDaemonState):new

Revision as of 19:09, 14 May 2012


The IncorrectDaemonState exception class indicates that the state of the daemon thread was not correct for a method.

To produce an exception for yourself, you typically use a User Language Throw statement calling the MaxDaemExceeded New constructor:

throw %(maxDaemExceeded):new

The only method of the IncorrectDaemonState exception class is the New constructor. The class has no properties.

This class is available as of Sirius Mods Version 8.1.


The IncorrectDaemonState methods

The following are the available IncorrectDaemonState class methods.

MethodDescription
NewCreate a new IncorrectDaemonState object
StateState of daemon at time of exception

The methods in the class are described in the subsections that follow. In addition:

New constructor

Create a new IncorrectDaemonState object (IncorrectDaemonState class)

[Introduced in Sirius Mods 8.1]

This method generates an instance of an IncorrectDaemonState exception. The New method format is as follows:

Syntax

%incorrectDaemonState = [%(IncorrectDaemonState):]New[( [State= daemonState])]

Syntax terms

%incorrectDaemonState A reference to an instance of an IncorrectDaemonState object.
%(IncorrectDaemonState)The class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking an IncorrectDaemonState Constructor.

Usage notes

  • As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:

    %maxdaem = new %incorrectDaemonState = %(IncorrectDaemonState):new %incorrectDaemonState = %incorrectDaemonState:new