13 lines
335 B
C#
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.")
|
|
{
|
|
}
|
|
}
|
|
} |