Throw Statement

The throw statement lets you raise an exception, thus breaking the execution until:


Syntax

	throw <expression>
	
Note: * expression must yield a Java.Lang.Throwable.

Example

	throw Java.Exception("Something is wrong")