Java tutorial
//package com.java2s; //License from project: Apache License public class Main { public static <T> T newInstanceSafely(Class<T> clz) { try { return clz.newInstance(); } catch (InstantiationException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } return null; } }