summaryrefslogtreecommitdiff
path: root/src/com/mavlushechka/tictactoe/exceptions/OccupiedCellException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/mavlushechka/tictactoe/exceptions/OccupiedCellException.java')
-rw-r--r--src/com/mavlushechka/tictactoe/exceptions/OccupiedCellException.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/com/mavlushechka/tictactoe/exceptions/OccupiedCellException.java b/src/com/mavlushechka/tictactoe/exceptions/OccupiedCellException.java
new file mode 100644
index 0000000..4da451f
--- /dev/null
+++ b/src/com/mavlushechka/tictactoe/exceptions/OccupiedCellException.java
@@ -0,0 +1,7 @@
+package com.mavlushechka.tictactoe.exceptions;
+
+public class OccupiedCellException extends Exception {
+ public OccupiedCellException(String errorMessage) {
+ super(errorMessage);
+ }
+}