Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-kimmel committed Feb 18, 2016
1 parent fe44b47 commit b40e385
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions CSSE374-Eleven/src/src/problem/visible/DesignParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ public void run(Properties prop) throws Exception {
inputClasses = prop.getProperty("Input-Classes").split(",");
}
if (prop.keySet().contains("Input-Folder")) {
importedClasses = FileImporter.getClasses(prop.getProperty("Input-Folder"));
try {
importedClasses = FileImporter.getClasses(prop.getProperty("Input-Folder"));
} catch (Exception e) {
}
}

String[] phases = prop.getProperty("Phases").split(",");
Expand Down Expand Up @@ -112,7 +115,7 @@ public void run(Properties prop) throws Exception {
IClass pClass = parse(clazz, model);
currentParseClass = pClass.getName();
model.addClass(pClass);
} catch (IOException e) {
} catch (Exception e) {
}
}
}
Expand Down

0 comments on commit b40e385

Please sign in to comment.