public class ThrowException { public static void main(String[] args) { try { foo(); } catch(Exception e) { if (e
try { throw new IOException(); } catch(IOException e) { System.out.println("Completed!"); }