Lucene.Net.Index.IndexWriter.HandleOOM C# (CSharp) Method

HandleOOM() private method

private HandleOOM ( System oom, System location ) : void
oom System
location System
return void
	    private void  HandleOOM(System.OutOfMemoryException oom, System.String location)
		{
			if (infoStream != null)
			{
				Message("hit OutOfMemoryError inside " + location);
			}
			hitOOM = true;
			throw oom;
		}
		
IndexWriter