public override async Task ProcessException(string exception)
        {
            if (!WebDataPacketReader.IsException(exception))
            {
                return;
            }

            if (!IncludeThisOne(exception))
            {
                return;
            }

            Console.WriteLine("{0}", CurrentUri);
            Console.WriteLine(exception);
            Console.WriteLine();
        }