00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef TEUCHOS_TEST_FOR_EXCEPTION_H
00030 #define TEUCHOS_TEST_FOR_EXCEPTION_H
00031
00036 #include "Teuchos_ConfigDefs.hpp"
00037
00042
00044 void TestForException_break();
00045
00109 #define TEST_FOR_EXCEPTION(throw_exception_test,Exception,msg) \
00110 { \
00111 const bool throw_exception = (throw_exception_test); \
00112 if(throw_exception) { \
00113 TestForException_break(); \
00114 TeuchosOStringStream omsg; \
00115 omsg << __FILE__ << ":" << __LINE__ << ": " \
00116 << #throw_exception_test << ": " << msg; \
00117 throw Exception(TEUCHOS_OSTRINGSTREAM_GET_C_STR(omsg)); \
00118 } \
00119 }
00120
00132 #define TEST_FOR_EXCEPT(throw_exception_test) TEST_FOR_EXCEPTION(throw_exception_test,std::logic_error,"Error!")
00133
00147 #define TEST_FOR_EXCEPTION_PRINT(throw_exception_test,Exception,msg,out_ptr) \
00148 try { \
00149 TEST_FOR_EXCEPTION(throw_exception_test,Exception,msg); \
00150 } \
00151 catch(const std::exception &except) { \
00152 ostream *l_out_ptr = (out_ptr); \
00153 if(l_out_ptr) { \
00154 *l_out_ptr \
00155 << "\nThorwing an std::exception of type \'"<<typeid(except).name()<<"\' with the error message: " \
00156 << except.what(); \
00157 } \
00158 throw; \
00159 }
00160
00171 #define TEST_FOR_EXCEPT_PRINT(throw_exception_test,out_ptr) TEST_FOR_EXCEPTION_PRINT(throw_exception_test,std::logic_error,"Error!",out_ptr)
00172
00173
00178 #define TEUCHOS_TRACE(exc)\
00179 { \
00180 TeuchosOStringStream omsg; \
00181 omsg << exc.what() << endl \
00182 << "caught in " << __FILE__ << ":" << __LINE__ << endl ; \
00183 throw std::runtime_error(TEUCHOS_OSTRINGSTREAM_GET_C_STR(omsg)); \
00184 }
00185
00186
00188
00189 #endif // TEUCHOS_TEST_FOR_EXCEPTION_H