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