Files
schengen-visa/SchengenVisaApi/ApplicationLayer/GeneralExceptions/EntityNotFoundException.cs

5 lines
173 B
C#

namespace ApplicationLayer.GeneralExceptions;
/// Exception to throw when entity not found
public class EntityNotFoundException(string message) : ApiException(message);