Next: throw

Prev: error_str

rethrow

rethrow(error-code)
This function, which you should only call inside an error handler for a catch statement (see Error-Handling Statements), continues propagating an error condition. The interpreter will abort the current method and throw an error of type error-code in the calling method. If you are not in an error handler, this function throws an ~error error.

Examples:

rethrow(~perm);