1public static void main(String[] args){
2 try {
3 test();
4 } catch (UnsupportedOperationException e) {
5 System.out.println(e);
6 e.printStackTrace();
7 }
8}
9
10private static void test() {
11 throw new UnsupportedOperationException("Not yet implemented");
12}