1 #ifndef UNITTEST_ASSERTEXCEPTION_H 2 #define UNITTEST_ASSERTEXCEPTION_H 3 4 #include "Config.h" 5 #ifndef UNITTEST_NO_EXCEPTIONS 6 7 #include "HelperMacros.h" 8 #include <exception> 9 10 namespace UnitTest { 11 12 class UNITTEST_LINKAGE AssertException : public std::exception 13 { 14 public: 15 AssertException(); 16 virtual ~AssertException() throw(); 17 }; 18 19 } 20 21 #endif 22 23 #endif 24