We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e5b78 commit bf03629Copy full SHA for bf03629
1 file changed
prism/src/parser/VarList.java
@@ -351,7 +351,7 @@ else if (type instanceof TypeBool) {
351
}
352
// Anything else
353
else {
354
- throw new PrismLangException("Unknown type " + type + " for variable " + getName(i));
+ throw new PrismLangException("Unsupported type " + type + " for variable " + getName(i));
355
356
} catch (ClassCastException e) {
357
throw new PrismLangException("Value " + val + " is wrong type for variable " + getName(i));
@@ -388,7 +388,7 @@ else if (s.equals("false"))
388
389
390
391
392
393
394
0 commit comments