mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 19:53:45 +01:00
17 lines
427 B
C++
17 lines
427 B
C++
// 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) {
|
|
std::cout << "caught error \n" << e.what() << std::endl;
|
|
std::cout << "C++ trace = \n" << e.trace() << std::endl;
|
|
}
|
|
}
|
|
|
|
int main() { f(); }
|
|
|