Go to the documentation of this file.
   57 #define  catch_bool_macro                                   \ 
   59     catch(exception& ex)                                    \ 
   62         msg<<"RoadRunner exception: "<<ex.what()<<endl;     \
 
   63         setError(msg.str());                                \
 
   71 #define  catch_ptr_macro                                    \ 
   73     catch(exception& ex)                                    \ 
   76         msg<<"RoadRunner exception: "<<ex.what()<<endl;     \
 
   77         setError(msg.str());                                \
 
   85 #define catch_int_macro                                     \ 
   87     catch(exception& ex)                                    \ 
   90         msg<<"RoadRunner exception: "<<ex.what()<<endl;     \
 
   91         setError(msg.str());                                \
 
   99 #define catch_double_macro                                     \ 
  101     catch(exception& ex)                                    \ 
  104         msg<<"RoadRunner exception: "<<ex.what()<<endl;     \
 
  105         setError(msg.str());                                \
 
  113 #define catch_void_macro                                    \ 
  115     catch(const exception& ex)                              \ 
  118         msg<<"RoadRunner exception: "<<ex.what()<<endl;     \
 
  119         setError(msg.str());                                \