throw: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(see also example)
Line 17: Line 17:
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>throw "invalid argument"</pre> |= Example 1
|x1= <code>[[try]] {[[throw]] "invalid argument"} [[catch]] {[[hint]] [[str]] _exception};</code> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[try]], [[Exception handling]]  |= See also
| [[Exception handling]], [[try]], [[catch]]  |= See also


}}
}}

Revision as of 22:56, 9 June 2015

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Throws an exception. The exception is processed by first catch block.
Groups:
Uncategorised

Syntax

Syntax:
throw expression
Parameters:
expression: Anything
Return Value:
Nothing

Examples

Example 1:
try {throw "invalid argument"} catch {hint str _exception};

Additional Information

See also:
Exception handlingtrycatch

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section