summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/unittest-cpp/UnitTest++/AssertException.cpp
blob: 9a7d78f23a222635cef8fd01a0a6ea234b821ad6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "AssertException.h"

#ifndef UNITTEST_NO_EXCEPTIONS

namespace UnitTest {

AssertException::AssertException()
{
}

AssertException::~AssertException() throw()
{
}

}

#endif