1 2 3 4 5 6 7
package com.mavlushechka.tictactoe.exceptions; public class OccupiedCellException extends Exception { public OccupiedCellException(String errorMessage) { super(errorMessage); } }