11 lines
192 B
C#
11 lines
192 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Exceptions
|
|
{
|
|
public class ServerException : Exception
|
|
{
|
|
public ServerException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
} |