package lab.games; import java.io.FileNotFoundException; public class Play { private Play() {} public static void main(String[] args) { try { ASCIImation jumpingJacks = new ASCIImation("jumping-jacks.txt"); jumpingJacks.play(); } catch (FileNotFoundException e) { System.out.println("The file cannot be found"); } } }