7 lines
221 B
C#
7 lines
221 B
C#
using ApplicationLayer.Services.GeneralExceptions;
|
|
using Domains.Users;
|
|
|
|
namespace ApplicationLayer.Services.Users.Exceptions;
|
|
|
|
public class WrongRoleException(Guid userId) : EntityNotFoundByIdException<User>(userId);
|