![]() |
MechSys
1.0
Computing library for simulations in continuum and discrete mechanics
|
#include <iostream>
#include <cstdarg>
#include <exception>
#include <mechsys/util/string.h>
Go to the source code of this file.
Classes | |
class | Fatal |
Defines | |
#define | MECHSYS_FINALIZE return 1; |
#define | MECHSYS_MPI_CATCH |
#define | MECHSYS_MPI_INIT |
#define | MECHSYS_BPY_CATCH |
#define | MECHSYS_CATCH |
Variables | |
bool | MECHSYS_CATCH_PARALLEL = false |
#define MECHSYS_BPY_CATCH |
#define MECHSYS_CATCH |
catch (Fatal * e) { e->Cout(); delete e; MECHSYS_FINALIZE } \ catch (char const * m) { printf("%sFatal: %s%s\n",TERM_RED,m ,TERM_RST); MECHSYS_FINALIZE } \ catch (std::exception & e) { printf("%sFatal: %s%s\n",TERM_RED,e.what(),TERM_RST); MECHSYS_FINALIZE } \ MECHSYS_MPI_CATCH \ MECHSYS_BPY_CATCH \ catch (...) { printf("%sFatal: Some exception (...) occurred%s\n",TERM_RED,TERM_RST); MECHSYS_FINALIZE }
#define MECHSYS_FINALIZE return 1; |
#define MECHSYS_MPI_CATCH |
#define MECHSYS_MPI_INIT |
bool MECHSYS_CATCH_PARALLEL = false |