}
@Test
public void testResourceReadingException()
{
ResourceReadingException exception = new com.impetus.kundera.classreading.ResourceReadingException("Error with string");
Assert.assertNotNull(exception);
exception = new ResourceReadingException(new RuntimeException());
Assert.assertNotNull(exception);
exception = new ResourceReadingException("KunderaTests",new RuntimeException());
Assert.assertNotNull(exception);
exception = new ResourceReadingException();
Assert.assertNotNull(exception);
}