namespace Microsoft.eShopOnContainers.Services.Locations.API.Infrastructure.Exceptions { using System; /// /// Exception type for app exceptions /// public class LocationDomainException : Exception { public LocationDomainException() { } public LocationDomainException(string message) : base(message) { } public LocationDomainException(string message, Exception innerException) : base(message, innerException) { } } }