Open davidmoten opened 9 years ago
Why are expections not being wrapped in a RuntimeException and being rethrown?
RuntimeException
public FeatureFileDumper(ConfigurationManager cm, String frontEndName) throws IOException { try { frontEnd = (FrontEnd) cm.lookup(frontEndName); audioSource = (StreamDataSource) cm.lookup("streamDataSource"); } catch (Exception e) { e.printStackTrace(); } }
the method getAllFeatures needs the same treatment
getAllFeatures
Why are expections not being wrapped in a
RuntimeException
and being rethrown?