package lectures.exceptions;
import util.annotations.WebDocuments;
@WebDocuments({"Lectures/Exceptions.pptx", "Lectures/Exceptions.pdf", "Videos/Exceptions.avi"})
public class ExceptionHandlingArgsPrinter {
    public static void main(String[] args) {
        try {
            System.out.println(args[0]);
        } catch (ArrayIndexOutOfBoundsException e) {
            System.out.println("Did not specify the argument to be printed. Terminating program.");
            System.exit(-1);
        }
    }
}