1 #include "AssertException.h" 2 3 #ifndef UNITTEST_NO_EXCEPTIONS 4 5 namespace UnitTest { 6 AssertException()7AssertException::AssertException() 8 { 9 } 10 ~AssertException()11AssertException::~AssertException() throw() 12 { 13 } 14 15 } 16 17 #endif 18