From 885ae560a7eeb8782d9d1176694d1facdffe6a3b Mon Sep 17 00:00:00 2001 From: Joachim Klein Date: Fri, 23 Jun 2017 10:54:48 +0000 Subject: [PATCH] explicit: Improve error message for unsupported multi-objective model checking git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@11994 bbc10eb1-c90d-0410-af57-cb519fbb1720 --- prism/src/explicit/StateModelChecker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism/src/explicit/StateModelChecker.java b/prism/src/explicit/StateModelChecker.java index b705009d..77f0dc1e 100644 --- a/prism/src/explicit/StateModelChecker.java +++ b/prism/src/explicit/StateModelChecker.java @@ -665,7 +665,7 @@ public class StateModelChecker extends PrismComponent case ExpressionFunc.LOG: return checkExpressionFuncBinary(model, expr, statesOfInterest); case ExpressionFunc.MULTI: - throw new PrismNotSupportedException("Multi-objective model checking is not supported for " + model.getModelType() + "s"); + throw new PrismNotSupportedException("Multi-objective model checking is not supported for " + model.getModelType() + "s with the explicit engine"); default: throw new PrismException("Unrecognised function \"" + expr.getName() + "\""); }