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