public void SendException(string description, bool fatal)
        {
            try
            {
                var nvc = HitInfoFactory.CreateExceptionHit(BasePostDataValues, description, fatal);

                sendImmediately(nvc);
            }
            catch
            {
            }
        }
            public ITrackerBatch AddException(string description, bool fatal)
            {
                var hit = HitInfoFactory.CreateExceptionHit(_tracker.BasePostDataValues, description, fatal);

                checkFlush();

                lock (_syncRoot)
                {
                    _cache.Add(hit);
                }

                return(this);
            }