mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
16 lines
334 B
C#
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);
|
|
}
|
|
}
|
|
} |