summaryrefslogtreecommitdiff
path: root/src/com/mavlushechka/tictactoe/exceptions/OccupiedCellException.java
blob: 4da451f81da6173c0462b36e2e79e35760be570d (plain)
1
2
3
4
5
6
7
package com.mavlushechka.tictactoe.exceptions;

public class OccupiedCellException extends Exception {
    public OccupiedCellException(String errorMessage) {
        super(errorMessage);
    }
}