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 284a0c9f authored by frey_m's avatar frey_m
Browse files

fix class name in exception

parent 13883a84
No related branches found
No related tags found
No related merge requests found
...@@ -49,8 +49,8 @@ SDDS::file SDDS::SDDSParser::run() { ...@@ -49,8 +49,8 @@ SDDS::file SDDS::SDDSParser::run() {
if (!success || contentsIter != contentsEnd) if (!success || contentsIter != contentsEnd)
{ {
throw SDDSParserException("StatisticalErrors::parseSDDSFile", throw SDDSParserException("SDDSParser::parseSDDSFile",
"could not parse SDDS file"); "could not parse SDDS file");
} }
unsigned int param_order = 0; unsigned int param_order = 0;
...@@ -90,8 +90,8 @@ std::string SDDS::SDDSParser::readFile() { ...@@ -90,8 +90,8 @@ std::string SDDS::SDDSParser::readFile() {
return contents; return contents;
} }
throw SDDSParserException("StatisticalErrors::readSDDSFile", throw SDDSParserException("SDDSParser::readSDDSFile",
"could not open file '" + sddsFileName_m + "'"); "could not open file '" + sddsFileName_m + "'");
return std::string(""); return std::string("");
} }
......
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