@Test
public void testSchemaGenerationException()
{
SchemaGenerationException exception = new SchemaGenerationException("Error with string");
Assert.assertNotNull(exception);
exception = new SchemaGenerationException(new RuntimeException());
Assert.assertNotNull(exception);
exception = new SchemaGenerationException(new RuntimeException(),"KunderaTests");
Assert.assertNotNull(exception);
exception = new SchemaGenerationException(new RuntimeException(),"KunderaTests","test");
Assert.assertNotNull(exception);
exception = new SchemaGenerationException(new RuntimeException(),"KunderaTests","test");
Assert.assertNotNull(exception);
exception = new SchemaGenerationException("error with string ",new RuntimeException(),"KunderaTests","test");
Assert.assertNotNull(exception);
exception = new SchemaGenerationException("error with string ", "cassandra", "KunderaTests","test");
Assert.assertNotNull(exception);
exception = new SchemaGenerationException("error with string ","KunderaTests","test");
Assert.assertNotNull(exception);
exception = new SchemaGenerationException("error with string ",new RuntimeException(),"KunderaTests");
Assert.assertNotNull(exception);
}