Browse Source

Error message typo.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@10842 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 10 years ago
parent
commit
bfe2715d3b
  1. 4
      prism/src/prism/ExplicitFiles2MTBDD.java

4
prism/src/prism/ExplicitFiles2MTBDD.java

@ -730,9 +730,9 @@ public class ExplicitFiles2MTBDD
// close file
in.close();
} catch (IOException e) {
throw new PrismException("File I/O error reading from \"" + statesFile + "\"");
throw new PrismException("File I/O error reading from \"" + labelsFile + "\"");
} catch (NumberFormatException e) {
throw new PrismException("Error detected at line " + lineNum + " of states file \"" + statesFile + "\"");
throw new PrismException("Error detected at line " + lineNum + " of labels file \"" + labelsFile + "\"");
}
if (count < 1) {
throw new PrismException("No initial states found in labels file");

Loading…
Cancel
Save