So I am trying to start working on the Minesweeper Game. I am working on part 1/16 and it seems like it is both asking for the basic layout of the MinesweeperGame class but also writing out initializing the Game class on top of what is being requested in the requirements. I have followed the instructions as requested but I keep getting an error saying "An error occurred: UNKNOWN_ERROR". I have followed the requirements and noted the statement "If you did everything right, you will see the playing field when you start the application." This provides some confusion. Regardless, my code looks like this:
package com.codegym.games.minesweeper

import com.codegym.engine.cell.*;

public class MinesweeperGame extends Game
{

}
I have also considered including some: public static void main(String[] args) { game.initialize(); } to satisfy the statement mentioned above. Is there any insight to move forward from here?