storeMgr.getStringProperty("datanucleus.rdbms.connectionProviderName"),
"class-name", null, null);
if (connProvider == null)
{
// No provider with this name (missing plugin ?)
throw new NucleusException(LOCALISER_RDBMS.msg("050000",
storeMgr.getStringProperty("datanucleus.rdbms.connectionProviderName"))).setFatal();
}
connProvider.setFailOnError(storeMgr.getBooleanProperty("datanucleus.rdbms.connectionProviderFailOnError"));
}
catch (Exception e)
{
// Error creating provider
throw new NucleusException(LOCALISER_RDBMS.msg("050001",
storeMgr.getStringProperty("datanucleus.rdbms.connectionProviderName"), e.getMessage()), e).setFatal();
}
}