Informationen ausgelagert Kleines Spy/Test Programm erstellt Mehr Exceptions/InvalidUpdateFileRequestException.cs Launcher Host in Download Server geändert Download Server macht zusätzlich Abfrage an den Hauptserver Download geht jetzt stückweise von statten
24 lines
561 B
C#
24 lines
561 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.SharedLauncher.Exceptions
|
|
{
|
|
public class InvalidUpdatePlanRequestException : UpdateException
|
|
{
|
|
public InvalidUpdatePlanRequestException()
|
|
{
|
|
}
|
|
|
|
public InvalidUpdatePlanRequestException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public InvalidUpdatePlanRequestException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|