public class JLS_14_20_TryStatement_6 { public static void main(String[] args) { try { Thread.sleep(100); } catch (InterruptedException e) { // Do nothing } } }