Files
duplicati/Duplicati/WebserverCore/Exceptions/ServiceUnavailableException.cs
Kenneth Skovhede 9f79025744 Removed HttpServer.
Re-implemented everything using ASP.NET.
Changed some requests to use JSON instead of FORM data.
Some work towards deleting the FIXMEGlobal instance.
Auth is missing, XSRF does not work correctly.
2024-06-07 15:56:43 +02:00

7 lines
205 B
C#

namespace Duplicati.WebserverCore.Exceptions
{
public class ServiceUnavailableException(string Message) : UserReportedHttpException(Message)
{
public override int StatusCode => 503;
}
}