Files
schengen-visa/SchengenVisaApi/ApplicationLayer/Services/Users/Exceptions/WrongRoleException.cs

7 lines
212 B
C#

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