slarny4/Demo1/Data/Exceptions/UserNotFoundException.cs

9 lines
197 B
C#
Raw Normal View History

2024-10-24 08:50:32 +00:00
using System;
namespace AttendanceApp.Data.Exceptions
{
public class UserNotFoundException : Exception
{
public UserNotFoundException(string message) : base(message) { }
}
}