A `nocatch` block is a block which may throw an exception, which is ignored (except if scream-errors is on.) ```java nocatch { _codeThatThrowsAnException(); } ``` is compiled to ```java try { _codeThatThrowsAnException(); } catch(Exception @ex) { // Ignored } ```