survey-webapp/SurveyBackend/SurveyBackend.Services/Exceptions/NotFoundException.cs
shept 55e82425a9 say NO to try-catch in controllers
- added ExceptionsMiddleware.cs
- added more Exception types
- removed all exceptions logic in controllers
2025-04-18 15:15:32 +05:00

10 lines
No EOL
216 B
C#

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