Browse Source

clearer error message

tempestpy_adaptions
Sebastian Junges 5 years ago
parent
commit
31b50d76e9
  1. 2
      src/storm-parsers/parser/ValueParser.cpp

2
src/storm-parsers/parser/ValueParser.cpp

@ -7,7 +7,7 @@ namespace storm {
template<typename ValueType> template<typename ValueType>
void ValueParser<ValueType>::addParameter(std::string const& parameter) { void ValueParser<ValueType>::addParameter(std::string const& parameter) {
STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Parameters are not supported in this build.");
STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Parameters are not supported in this build (Have you checked storm-pars?).");
} }
template<> template<>

Loading…
Cancel
Save