24 lines
502 B
C#
24 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.SharedLauncher.Exceptions
|
|
{
|
|
[Serializable]
|
|
public class UpdateException : Exception
|
|
{
|
|
public UpdateException()
|
|
{ }
|
|
|
|
public UpdateException(string message)
|
|
: base(message)
|
|
{ }
|
|
|
|
public UpdateException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{ }
|
|
}
|
|
}
|