Files
schengen-visa/SchengenVisaApi/Infrastructure/Database/Applicants/Repositories/Exceptions/ApplicantNotFoundByUserIdException.cs
2024-08-22 16:56:14 +03:00

7 lines
233 B
C#

using ApplicationLayer.Services.GeneralExceptions;
namespace Infrastructure.Database.Applicants.Repositories.Exceptions
{
public class ApplicantNotFoundByUserIdException() : EntityNotFoundException("Applicant not found.");
}