}
@Test
public void testLuceneIndexingException()
{
LuceneIndexingException exception = new LuceneIndexingException("Error with string");
Assert.assertNotNull(exception);
exception = new LuceneIndexingException(new RuntimeException());
Assert.assertNotNull(exception);
exception = new LuceneIndexingException("KunderaTests",new RuntimeException());
Assert.assertNotNull(exception);
exception = new LuceneIndexingException();
Assert.assertNotNull(exception);
}