From 7daa5e2ab7d57df47abec6e940ab3cd8681f837b Mon Sep 17 00:00:00 2001 From: Sebastian Junges Date: Sat, 6 Mar 2021 11:20:59 -0800 Subject: [PATCH] fixed error message --- src/storm/storage/prism/Program.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm/storage/prism/Program.cpp b/src/storm/storage/prism/Program.cpp index 41d524a4b..893f87a44 100644 --- a/src/storm/storage/prism/Program.cpp +++ b/src/storm/storage/prism/Program.cpp @@ -683,7 +683,7 @@ namespace storm { std::set const& Program::getModuleIndicesByActionIndex(uint_fast64_t actionIndex) const { auto const& actionModuleSetPair = this->actionIndicesToModuleIndexMap.find(actionIndex); - STORM_LOG_THROW(actionModuleSetPair != this->actionIndicesToModuleIndexMap.end(), storm::exceptions::OutOfRangeException, "Action name '" << actionIndex << "' does not exist."); + STORM_LOG_THROW(actionModuleSetPair != this->actionIndicesToModuleIndexMap.end(), storm::exceptions::OutOfRangeException, "Action with index '" << actionIndex << "' does not exist."); return actionModuleSetPair->second; }