10 lines
No EOL
220 B
C#
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)
|
|
{
|
|
}
|
|
} |