My program seems to work just fine and even lets me run it. But after the ball disappears, a terminal window pops up, telling me that it can't access code that it shouldn't even be trying to access. Here is what it says
"java.lang.IllegalArgumentException: java.io.FileNotFoundException: Could not find file: 200.png
at greenfoot.GreenfootImage.loadFile(GreenfootImage.java:281)
at greenfoot.GreenfootImage.<init>(GreenfootImage.java:108)
at Points.<init>(Points.java:16)
at Board.act(Board.java:71)
at greenfoot.core.Simulation.actWorld(Simulation.java:600)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:535)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)
Caused by: java.io.FileNotFoundException: Could not find file: 200.png
at greenfoot.util.GreenfootUtil.getURL(GreenfootUtil.java:544)
at greenfoot.GreenfootImage.loadFile(GreenfootImage.java:278)
... 7 more
java.lang.IllegalStateException: Actor not in world. An attempt was made to use the actor's location while it is not in the world. Either it has not yet been inserted, or it has been removed.
at greenfoot.Actor.failIfNotInWorld(Actor.java:695)
at greenfoot.Actor.getOneObjectAtOffset(Actor.java:897)
at GoldBall.crush(GoldBall.java:72)
at GoldBall.act(GoldBall.java:25)
at greenfoot.core.Simulation.actActor(Simulation.java:594)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:552)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)
java.lang.IllegalStateException: Actor not in world. An attempt was made to use the actor's location while it is not in the world. Either it has not yet been inserted, or it has been removed.
at greenfoot.Actor.failIfNotInWorld(Actor.java:695)
at greenfoot.Actor.getOneObjectAtOffset(Actor.java:897)
at GoldBall.crush(GoldBall.java:72)
at GoldBall.act(GoldBall.java:25)
at greenfoot.core.Simulation.actActor(Simulation.java:594)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:552)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)
java.lang.IllegalStateException: Actor not in world. An attempt was made to use the actor's location while it is not in the world. Either it has not yet been inserted, or it has been removed.
at greenfoot.Actor.failIfNotInWorld(Actor.java:695)
at greenfoot.Actor.getOneObjectAtOffset(Actor.java:897)
at GoldBall.crush(GoldBall.java:72)
at GoldBall.act(GoldBall.java:25)
at greenfoot.core.Simulation.actActor(Simulation.java:594)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:552)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)
java.lang.IllegalStateException: Actor not in world. An attempt was made to use the actor's location while it is not in the world. Either it has not yet been inserted, or it has been removed.
at greenfoot.Actor.failIfNotInWorld(Actor.java:695)
at greenfoot.Actor.getOneObjectAtOffset(Actor.java:897)
at GoldBall.crush(GoldBall.java:72)
at GoldBall.act(GoldBall.java:25)
at greenfoot.core.Simulation.actActor(Simulation.java:594)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:552)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)
java.lang.IllegalStateException: Actor not in world. An attempt was made to use the actor's location while it is not in the world. Either it has not yet been inserted, or it has been removed.
at greenfoot.Actor.failIfNotInWorld(Actor.java:695)
at greenfoot.Actor.getOneObjectAtOffset(Actor.java:897)
at GoldBall.crush(GoldBall.java:72)
at GoldBall.act(GoldBall.java:25)
at greenfoot.core.Simulation.actActor(Simulation.java:594)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:552)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)
java.lang.IllegalStateException: Actor not in world. An attempt was made to use the actor's location while it is not in the world. Either it has not yet been inserted, or it has been removed.
at greenfoot.Actor.failIfNotInWorld(Actor.java:695)
at greenfoot.Actor.getOneObjectAtOffset(Actor.java:897)
at GoldBall.crush(GoldBall.java:72)
at GoldBall.act(GoldBall.java:25)
at greenfoot.core.Simulation.actActor(Simulation.java:594)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:552)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)
java.lang.IllegalStateException: Actor not in world. An attempt was made to use the actor's location while it is not in the world. Either it has not yet been inserted, or it has been removed.
at greenfoot.Actor.failIfNotInWorld(Actor.java:695)
at greenfoot.Actor.getOneObjectAtOffset(Actor.java:897)
at GoldBall.crush(GoldBall.java:72)
at GoldBall.act(GoldBall.java:25)
at greenfoot.core.Simulation.actActor(Simulation.java:594)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:552)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)
java.lang.IllegalStateException: Actor not in world. An attempt was made to use the actor's location while it is not in the world. Either it has not yet been inserted, or it has been removed.
at greenfoot.Actor.failIfNotInWorld(Actor.java:695)
at greenfoot.Actor.getOneObjectAtOffset(Actor.java:897)
at GoldBall.crush(GoldBall.java:72)
at GoldBall.act(GoldBall.java:25)
at greenfoot.core.Simulation.actActor(Simulation.java:594)
at greenfoot.core.Simulation.runOneLoop(Simulation.java:552)
at greenfoot.core.Simulation.runContent(Simulation.java:215)
at greenfoot.core.Simulation.run(Simulation.java:205)"
If you need the code let me know.

