L3-Bataille-Navale/source/error/PositionAlreadyShot.py

4 lines
167 B
Python

class PositionAlreadyShot(Exception):
def __init__(self, position: tuple[int, int]):
super().__init__(f"The position {position} have already been shot.")