9 lines
199 B
C#
9 lines
199 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AttendanceApp.Data.Exceptions
|
|||
|
{
|
|||
|
public class GroupNotFoundException : Exception
|
|||
|
{
|
|||
|
public GroupNotFoundException(string message) : base(message) { }
|
|||
|
}
|
|||
|
}
|