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