IncorrectDaemonState class
The IncorrectDaemonState exception class indicates that the state of the daemon thread was not correct for a method.
To produce a exception for yourself, you typically use a User Language Throw statement calling the an MaxDaemExceededNew 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 7.5.
The IncorrectDaemonState methods
The following are the available IncorrectDaemonState class methods.
Method | Description |
---|---|
New | Create a new IncorrectDaemonState object |
State | State of daemon at time of exception |
The methods in the class are described in the subsections that follow. In addition:
- "Notation conventions for methods" has information about the conventions followed.
- "IncorrectDaemonState methods syntax" is a single page that contains the syntax diagrams of all the methods in the class.
New constructor
Create a new IncorrectDaemonState object (IncorrectDaemonState class)
[Introduced in Sirius Mods 8.1]
This method generates an instance of an IncorrectDaemonState exception. TheNew method format is as follows:
Syntax
%incorrectDaemonState = [%(IncorrectDaemonState):]New[( [State= daemonState])]
Syntax terms
%incorrectDaemonState | A reference to an instance of a IncorrectDaemonState object. |
---|---|
%(IncorrectDaemonState) | The class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking a 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