class Test { void test(int x) { int y; try { y = x; } catch (NumberFormatException nfe) { throw new IllegalArgumentException(); } } }