class Launcher { public static void main(String[] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException { Class.forName(args[0]).newInstance();; } }