Lucene.Net.Index.TestAddIndexes.CommitAndAddIndexes2.Handle C# (CSharp) Method

Handle() private method

private Handle ( Exception t ) : void
t System.Exception
return void
            internal override void Handle(Exception t)
            {
                if (!(t is AlreadyClosedException) && !(t is System.NullReferenceException))
                {
                    Console.Error.WriteLine(t.StackTrace);
                    lock (Failures)
                    {
                        Failures.Add(t);
                    }
                }
            }
        }
TestAddIndexes.CommitAndAddIndexes2