7 lines
176 B
C#
7 lines
176 B
C#
namespace pacMan.Exceptions;
|
|
|
|
public class PlayerNotFoundException : Exception
|
|
{
|
|
public PlayerNotFoundException(string? message = "Player not found") : base(message) { }
|
|
}
|