NoFreeDaemons class: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (edits, tags and links) |
||
Line 1: | Line 1: | ||
<!-- NoFreeDaemons class --> | <!-- NoFreeDaemons class --> | ||
The NoFreeDaemons exception class indicates that the Daemon class constructor | The <var>NoFreeDaemons</var> exception class indicates that the <var>[[Daemon_class|Daemon]]</var> class <var>[[New_(Daemon_constructor)|New]]</>var> constructor was invoked, but there were no daemon threads available to service the object. | ||
was invoked, but there were no daemon threads available to service the object. | |||
To produce a NoFreeDaemons exception, you typically use a User Language Throw | To produce a <var>NoFreeDaemons</var> exception for yourself, you typically use a <var class="product">User Language</var> [[Throw]] statement with a <var>NoFreeDaemons</var> <var>[[New_(NoFreeDaemons_constructor)|New]]</var> constructor. For example, the following statement throws a <var>NoFreeDaemons</var> exception: | ||
statement with | <p class="code"> [[throw]] %(noFreeDaemons):new | ||
a NoFreeDaemons New constructor. | |||
For example, the following statement throws a NoFreeDaemons exception: | |||
<p class="code"> throw %(noFreeDaemons):new | |||
</p> | </p> | ||
The methods in this class are listed at "[[List of NoFreeDaemons methods]]". | The methods in this class are listed at "[[List of NoFreeDaemons methods]]". | ||
[[Category:System exception classes]] | [[Category:System exception classes]] |
Revision as of 07:11, 22 April 2011
The NoFreeDaemons exception class indicates that the Daemon class New</>var> constructor was invoked, but there were no daemon threads available to service the object.
To produce a NoFreeDaemons exception for yourself, you typically use a User Language Throw statement with a NoFreeDaemons New constructor. For example, the following statement throws a NoFreeDaemons exception:
throw %(noFreeDaemons):new
The methods in this class are listed at "List of NoFreeDaemons methods".