Files
graphql-test/Application/Exceptions/UserNotFoundException.cs
2025-11-26 16:50:06 -03:00

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.")
{
}