Files
schengen-visa/ApplicationLayer/Services/Users/Exceptions/WrongRoleException.cs
2025-10-05 14:32:06 +03:00

7 lines
212 B
C#

using ApplicationLayer.GeneralExceptions;
using Domains.Users;
namespace ApplicationLayer.Services.Users.Exceptions;
public class WrongRoleException(Guid userId) : EntityNotFoundByIdException<User>(userId);