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) { } } }