Skip to content

Commit

Permalink
Don't throw copy of exception. refs #3868
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartcampbell committed Dec 29, 2011
1 parent 87e40d1 commit a54e134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Algorithms/src/Rebin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ namespace Mantid
} catch (std::exception& ex)
{
g_log.error() << "Error in rebin function: " << ex.what() << std::endl;
throw ex;
throw;
}

// Populate the output workspace X values
Expand Down

0 comments on commit a54e134

Please sign in to comment.