8 lines
189 B
C#
8 lines
189 B
C#
using Domain.Enums;
|
|
|
|
namespace Application.Exceptions;
|
|
|
|
public class UserNotFoundException(int id) : BaseException(EErrorCategory.DataNotFoundError,$"User with ID {id} not found.")
|
|
{
|
|
|
|
} |