Skip to content
Snippets Groups Projects
Commit 9b4d6d14 authored by dgelessus's avatar dgelessus
Browse files

Don't catch NoClassDefFoundError when calling BParser (wtf?!)

parent 7c42816e
No related branches found
No related tags found
No related merge requests found
...@@ -66,11 +66,7 @@ public class Translator { ...@@ -66,11 +66,7 @@ public class Translator {
this.ltlFormula = ltlFormula; this.ltlFormula = ltlFormula;
BParser parser = new BParser(machineName); BParser parser = new BParser(machineName);
try {
start = parser.parseFile(machineFile); start = parser.parseFile(machineFile);
} catch (NoClassDefFoundError e) {
throw new TLC4BIOException("Definitions file cannot be found.", e);
}
// Definitions of definitions files are injected in the ast of the main // Definitions of definitions files are injected in the ast of the main
// machine // machine
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment