Package com.impetus.kundera.index

Examples of com.impetus.kundera.index.LuceneIndexingException


    }

    @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);
    }
View Full Code Here

TOP

Related Classes of com.impetus.kundera.index.LuceneIndexingException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.