public static SystemDatabase getInstance() {
try {
return instance == null ? instance = (SystemDatabase) systemDatabaseImpl.newInstance() : instance;
} catch (Exception e) {
log.error("Could not create instance of class " + systemDatabaseImpl.getCanonicalName(), e);
return instance == null ? instance = new JDBCSystemDatabase() : instance;
}
}