mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 11:43:47 +01:00
13 lines
243 B
C++
13 lines
243 B
C++
|
// automatically included in e.g. arrays, gfs, any triqs library...
|
||
|
#include <triqs/utility/exceptions.hpp>
|
||
|
|
||
|
int main() {
|
||
|
|
||
|
try {
|
||
|
if (2 != 3) TRIQS_RUNTIME_ERROR << " The condition is false because " << 2 << "!=" << 3;
|
||
|
}
|
||
|
catch(...) {}
|
||
|
|
||
|
}
|
||
|
|