domBudg/back/Services/Support/Exceptions/AlreadyExistsException.cs

9 lines
287 B
C#
Raw Normal View History

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