"http://code.google.com/appengine/docs/java/datastore/usingjpa.html#Inheritance";
private static final String JDO_INHERITANCE_DOCS_URL =
"http://code.google.com/appengine/docs/java/datastore/dataclasses.html#Inheritance";
private String buildUnsupportedInheritanceStrategyMessage(ClassMetaData cmd) {
InheritanceStrategy strat = cmd.getInheritanceMetaData().getStrategy();
if (isJPA()) {
// make sure our exception msg has the jpa inheritance identifiers in it
String jpaInheritanceType = getJPAInheritanceType(strat);
return String.format(BAD_INHERITANCE_MESSAGE, jpaInheritanceType, cmd.getFullClassName(), "JPA", JPA_INHERITANCE_DOCS_URL);
}