}
@Test
public void testPropertyAccessException()
{
PropertyAccessException exception = new PropertyAccessException("Error with string");
Assert.assertNotNull(exception);
exception = new PropertyAccessException();
Assert.assertNotNull(exception);
exception = new PropertyAccessException(new RuntimeException());
Assert.assertNotNull(exception);
}