3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 19:53:45 +01:00
dft_tools/doc/reference/utilities/exceptions_1.cpp

17 lines
427 B
C++
Raw Normal View History

// automatically included in e.g. arrays, gfs, any triqs library...
#include <triqs/utility/exceptions.hpp>
#include <iostream>
void f() {
try {
if (2 != 3) TRIQS_RUNTIME_ERROR << " The condition is false because " << 2 << "!=" << 3;
}
catch (triqs::runtime_error const& e) {
2014-07-23 20:55:41 +02:00
std::cout << "caught error \n" << e.what() << std::endl;
std::cout << "C++ trace = \n" << e.trace() << std::endl;
}
}
int main() { f(); }