throw
throw <expression>
The throw command throws an exception.
<script type="text/hyperscript"> def throwsIfTrue(value) if value throw "Yep!" end </script>