public class Loop22 { public void foo() throws Exception { for ( boolean tmp0 = false ; tmp0 ; ) { try { tmp0 = true; } catch (RuntimeException ex) { int type = 0; if (type == 0) { break; } else if (type == 1) { continue; } else { throw ex; } } } } }