throw new IllegalArgumentException("Recommender class name is null");
}
try {
recommender = Class.forName(recommenderClassName).asSubclass(Recommender.class).newInstance();
} catch (ClassNotFoundException cnfe) {
throw new TasteException(cnfe);
} catch (InstantiationException ie) {
throw new TasteException(ie);
} catch (IllegalAccessException iae) {
throw new TasteException(iae);
}
}