In Mapper.java, when calling generateObjectSource(),
the hardcoded Java source has an Exception within the
Generated sourcecode constructor, about line 369:
fw.write(" log(\"Error creating Email
record: \" + sqle.getMessage());\n");
should instead read:
fw.write(" log(\"Error creating " +
table.getTableNameForClass() + " record: \" +
sqle.getMessage());\n");
or some variation on that theme.