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