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

10 lines
No EOL
220 B
C#

namespace SurveyBackend.Services.Exceptions;
public abstract class ServiceException : Exception
{
public abstract int StatusCode { get; }
protected ServiceException(string message) : base(message)
{
}
}