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