Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 74da7172 authored by snuverink_j's avatar snuverink_j
Browse files

improve exception message

parent 590f45fc
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ public:
nval = stringToNum<T>(val);
} else {
throw OptPilotException("SDDSReader::getValue",
"unkown column name!");
"unknown column name: '" + param_name + "'!");
}
}
......@@ -111,7 +111,7 @@ public:
} else {
throw OptPilotException("SDDSReader::getInterpolatedValue",
"unkown column name!");
"unknown column name: '" + param_name + "'!");
}
// simple linear interpolation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment