mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Add exception handlers to all tutorials and examples
This commit is contained in:
@@ -193,6 +193,7 @@ BOOST_AUTO_TEST_CASE(Addition)
|
||||
#include <iostream>
|
||||
|
||||
int main()
|
||||
try
|
||||
{
|
||||
typedef AutoDiff::ForwardBlock<double> ADB;
|
||||
std::vector<int> blocksizes = { 3, 1, 2 };
|
||||
@@ -233,4 +234,8 @@ int main()
|
||||
m.insert(1,1) = 1;
|
||||
std::cout << m*sqx;
|
||||
}
|
||||
catch (const std::exception &e) {
|
||||
std::cerr << "Program threw an exception: " << e.what() << "\n";
|
||||
throw;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user