* .
*/
@Test
public void testGedcomValidationExceptionThrowable() {
try {
throw new GedcomValidationException("Yo", new RuntimeException());
} catch (GedcomValidationException e) {
Assert.assertNotNull(e);
Assert.assertEquals("Yo", e.getMessage());
Assert.assertNotNull(e.getCause());
}