16 lines
334 B
C#
Raw Normal View History

2022-01-26 10:32:16 -06:00
using System.Net.Sockets;
2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore.Exceptions
{
public class NetworkException : ServerException
{
2022-01-26 10:32:16 -06:00
public NetworkException(string msg) : base(msg)
{
}
public NetworkException(string msg, Socket s) : base(msg)
{
2022-01-26 10:32:16 -06:00
Data.Add("socket", s);
}
}
2022-01-26 10:32:16 -06:00
}