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