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