Skip to content

Commit

Permalink
Refs #8863. Better error reporting.
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbekasov committed Feb 26, 2014
1 parent 338d682 commit a23178c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Code/Mantid/Framework/DataHandling/src/LoadMuonNexus1.cpp
Expand Up @@ -144,8 +144,10 @@ namespace Mantid
setProperty("FirstGoodData", bin*bin_size);
}
}
catch (...)
{}
catch (std::exception& e)
{
g_log.warning() << "Error while loading the FirstGoodData value: " << e.what() << "\n";
}

NXEntry nxRun = root.openEntry("run");
std::string title;
Expand Down

0 comments on commit a23178c

Please sign in to comment.