IW4M-Admin/SharedLibraryCore/Exceptions/NetworkException.cs
2022-01-26 15:26:25 -06:00

16 lines
334 B
C#

using System.Net.Sockets;
namespace SharedLibraryCore.Exceptions
{
public class NetworkException : ServerException
{
public NetworkException(string msg) : base(msg)
{
}
public NetworkException(string msg, Socket s) : base(msg)
{
Data.Add("socket", s);
}
}
}