Catch exception

This is with java traduction (don’t know if it’s ok the java part :wink: )

begin # → try{ raise “exception” # → throw new Exception(); rescue # → }catch(Exception e){ puts $! # → System.out.println(e.toString()); end # → }