public static void main(String[] args){
try {
test();
} catch (UnsupportedOperationException e) {
System.out.println(e);
e.printStackTrace();
}
}
private static void test() {
throw new UnsupportedOperationException("Not yet implemented");
}
public static void main(String[] args){
try {
int z = 25 / 0;
} catch (Exception e) {
e.printStackTrace();
}
}