8 lines
		
	
	
		
			338 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			338 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using ApplicationLayer.GeneralExceptions;
 | |
| using ApplicationLayer.Services.AuthServices.Requests;
 | |
| 
 | |
| namespace ApplicationLayer.Services.AuthServices.RegisterService.Exceptions
 | |
| {
 | |
|     public class UserAlreadyExistsException(RegisterApplicantRequest request) : AlreadyExistsException($"User with email '{request.Email}' already exists");
 | |
| }
 |