pac-man-board-game/pac-man-board-game/Exceptions/PlayerNotFoundException.cs

7 lines
176 B
C#
Raw Normal View History

2023-07-11 14:23:41 +02:00
namespace pacMan.Exceptions;
public class PlayerNotFoundException : Exception
{
public PlayerNotFoundException(string? message = "Player not found") : base(message) { }
}