public void locateExpandedEntries() { for (String absoluteLocation : expandedNodes) { try { RepositoryLocation repositoryLocation = new RepositoryLocation(absoluteLocation); repositoryLocation.locateEntry(); } catch (MalformedRepositoryLocationException e) { LogService.getRoot().warning("Unable to expand the location:" + absoluteLocation); e.printStackTrace(); } catch (RepositoryException e) { LogService.getRoot().warning("Unable to expand the location:" + absoluteLocation); e.printStackTrace(); } } }
public static void main(String[] args) { RapidMiner.class.getName(); ParameterService.init(); try { new RapidAnalyticsCLTool(args).run(); } catch (IllegalArgumentException e) { System.err.println(e.getMessage()); System.exit(1); } catch (MalformedURLException e) { System.err.println(e.getMessage()); System.exit(1); } catch (RepositoryException e) { System.err.println(e.getMessage()); System.exit(1); } }