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