Files
schengen-visa/ApplicationLayer/GeneralExceptions/EntityNotFoundException.cs
2025-10-05 14:32:06 +03:00

5 lines
173 B
C#

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