internal SocketException(string message, UltimaSocket socket, byte[] data, Exception inner) : base(message, inner) { socketDump = socket.Dump(); socketDump += "Current data:\n" + PacketLogging.BuildString(data); }
internal SocketException(string message, UltimaSocket socket, Exception inner) : base(message, inner) { socketDump = socket.Dump(); }
internal SocketException(UltimaSocket socket) { socketDump = socket.Dump(); }