pac-man-board-game/pac-man-board-game/Exceptions/PlayerNotFoundException.cs
Martin Berg Alstad 5db0af5841 GameGroup tests
2023-07-11 14:23:41 +02:00

7 lines
176 B
C#

namespace pacMan.Exceptions;
public class PlayerNotFoundException : Exception
{
public PlayerNotFoundException(string? message = "Player not found") : base(message) { }
}