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