mirror of
https://github.com/duplicati/duplicati.git
synced 2026-05-08 08:09:32 -04:00
9f79025744
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.
9 lines
289 B
C#
9 lines
289 B
C#
namespace Duplicati.WebserverCore.Exceptions
|
|
{
|
|
public abstract class UserReportedHttpException(string? Message = null)
|
|
: Exception(Message ?? "Error")
|
|
{
|
|
public abstract int StatusCode { get; }
|
|
public virtual string ContentType => "application/json";
|
|
}
|
|
} |