UnlandedRobotException.java

package robot;


public class UnlandedRobotException extends Exception {

    public UnlandedRobotException() {
        super("The robot must be landed to move");
    }
}