public class HelloWorld3 { public static void main(String[] args) { try { System.out.println("Hello World!"+ "\nThe first command line argument was :"+ args[0]); } catch (ArrayIndexOutOfBoundsException x) { System.out.println("No command line arguments provided"); } } }