*/
static void uninitializedException() {
StackTraceElement[] trace = Thread.currentThread().getStackTrace();
String methodName = trace[2].getMethodName();
throw new RobotException(
"You cannot call the " + methodName
+ "() method before your run() method is called, or you are using a Robot object that the game doesn't know about.");
}