class StatementInCatchSection { void x() { try { } catch (ClassNotFoundException e) { } catch (IOException e) { e.printStackTrace(); } catch (Error e) { } } }