fixed Deluge failing when WebUI is not connected

This commit is contained in:
Flaminel
2025-03-26 22:15:37 +02:00
parent 874351aed7
commit 2d3ff04172
3 changed files with 47 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace Common.Exceptions;
public class FatalException : Exception
{
public FatalException()
{
}
public FatalException(string message) : base(message)
{
}
}