11 lines
		
	
	
		
			348 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			348 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using ApplicationLayer.Services.GeneralExceptions;
 | |
| using Domains.ApplicantDomain;
 | |
| 
 | |
| namespace Infrastructure.Database.Applicants.Repositories.Exceptions
 | |
| {
 | |
|     public class ApplicantNotFoundByUserIdException(Guid id) : EntityNotFoundException<Applicant>("Applicant not found.")
 | |
|     {
 | |
|         public Guid UserId { get; private set; } = id;
 | |
|     }
 | |
| }
 |