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