7 lines
241 B
C#
7 lines
241 B
C#
using ApplicationLayer.GeneralExceptions;
|
|
|
|
namespace ApplicationLayer.Services.Locations.RequestHandlers.Exceptions
|
|
{
|
|
public class CountryAlreadyExists(string countryName) : AlreadyExistsException($"{countryName} already exists.");
|
|
}
|