spotterConfiguration.getCoOcSelectorDatabaseUser(),
spotterConfiguration.getCoOcSelectorDatabasePassword()
);
} catch (SQLException e) {
throw new InitializationException("SQL Exception: Maybe wrong filename, incorrect JDBC connector String?", e);
} catch (ClassNotFoundException e) {
throw new InitializationException("Did not find SQL driver class specified in configuration file, " +
"is the driver in the classpath?", e);
} catch (InstantiationException e) {
throw new InitializationException("Could not instantiate SQL driver.", e);
} catch (IllegalAccessException e) {
throw new InitializationException("No access to SQL driver specified in configuration file.", e);
}
}