getLog().debug("ok, enterpriseEntity"+enterpriseEntity+", hashCode="+enterpriseEntity.hashCode());
getLog().debug(++test+"- "+"Calling for duplicate create and DuplicateKeyException...");
try
{
Object e = enterpriseEntityHome.create("Marc");
getLog().debug("I Really should not make it here, e="+e+", hashCode="+e.hashCode());
throw new Exception ("DuplicateKey not seen");
}
catch (DuplicateKeyException dke)
{