Files
BeWoPlaner/SharedLauncher/Exceptions/DownloadFileFailedException.cs
rene 421fae3332 Feature: Download Server ignoreren, wenn nicht vorhanden
Client macht vorm Update Checken eine Anfrage an den Download Server und prüft dessen Verfügbarkeit. Sollte keine vorhanden sein, so wird der Client direkt gestartet.
2023-01-09 17:28:56 +01:00

24 lines
537 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.SharedLauncher.Exceptions
{
public class DownloadFileFailedException : UpdateException
{
public DownloadFileFailedException()
{
}
public DownloadFileFailedException(string message) : base(message)
{
}
public DownloadFileFailedException(string message, Exception innerException) : base(message, innerException)
{
}
}
}