slarny4/Demo1/Data/Exceptions/GroupNotFoundException.cs
2024-10-28 15:42:04 +03:00

13 lines
335 B
C#

// C:\Users\adm\Source\Repos\presence1\Demo\Data\Exceptions\GroupNotFoundException.cs
using System;
namespace Demo.Data.Exceptions
{
public class GroupNotFoundException : Exception
{
public GroupNotFoundException(int groupId)
: base($"Group with ID {groupId} was not found.")
{
}
}
}