survey-webapp/SurveyBackend/SurveyBackend.Services/Exceptions/ConflictException.cs

10 lines
No EOL
216 B
C#

namespace SurveyBackend.Services.Exceptions;
public class ConflictException : ServiceException
{
public override int StatusCode => 409;
public ConflictException(string message) : base(message)
{
}
}