11 lines
192 B
C#
Raw Normal View History

using System;
2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore.Exceptions
{
public class ServerException : Exception
{
2022-01-26 10:32:16 -06:00
public ServerException(string msg) : base(msg)
{
}
}
2022-01-26 10:32:16 -06:00
}