Of course not every exception shall be an instance of java.lang.RuntimeException
. When a more
specialized type is required, you may simply instantiate a Java exception and throw it using the
throw
keyword as in the following example:
module golotest.execution.Exceptions import java.lang.RuntimeException function runtimeException = { throw RuntimeException("w00t") }