namespace Services.Support.Exceptions; public class AlreadyExistsException : Exception { public AlreadyExistsException(string message) : base(message) { } public AlreadyExistsException(string message, Exception innerException) : base(message, innerException) { } }