forked from Moux23333/FreeSR
10 lines
256 B
C#
10 lines
256 B
C#
namespace FreeSR.Shared.Exceptions
|
|
{
|
|
public class ServerInitializationException : Exception
|
|
{
|
|
public ServerInitializationException(string message) : base(message)
|
|
{
|
|
// ServerInitializationException.
|
|
}
|
|
}
|
|
}
|