public void test_Constructor() {
// Currently, there are no refs to CharConversionException so this is
// the best test we can do
try {
if (true) // BB: getting around LF
throw new CharConversionException();
fail("Exception not thrown");
} catch (CharConversionException e) {
assertNull(
"Exception defined with no message answers non-null to getMessage()",
e.getMessage());