public class ExceptionHandler { public static void err(Exception e) { System.err.println(e.getMessage()); e.printStackTrace(); } }