feat(hand): add exception for max 8 cards

This commit is contained in:
2025-05-24 22:47:00 -04:00
parent 7948d0cdbe
commit a93a377972

View File

@@ -0,0 +1,4 @@
package exeptions
class TooManyCardsException(message: String = "Cannot add more than 8 cards to the hand.")
extends Exception(message)