* Test throwing the exception with cause and message
*/
@Test
public void testCauseAndMessage() {
try {
throw new UnsupportedGedcomCharsetException("Foo", new Exception(
"Foo"));
} catch (UnsupportedGedcomCharsetException e) {
assertNotNull(e);
assertEquals("Foo", e.getMessage());
assertNotNull(e.getCause());