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 InvalidUpdateFileRequestException : UpdateException
|
|||
|
|
{
|
|||
|
|
public InvalidUpdateFileRequestException()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public InvalidUpdateFileRequestException(string message) : base(message)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public InvalidUpdateFileRequestException(string message, Exception innerException) : base(message, innerException)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|