- :logical
throws?
perform action, and return true if errors were thrown
Parameters
throws? action :block :bytecode
Returns
Examples
copythrows? [ 1 + 2 ] ; => false throws? -> 1/0 ; => true
throws? action :block :bytecode
copythrows? [ 1 + 2 ] ; => false throws? -> 1/0 ; => true