mame/3rdparty/unittest-cpp/UnitTest++/AssertException.cpp
2015-05-27 15:00:06 +02:00

18 lines
183 B
C++

#include "AssertException.h"
#ifndef UNITTEST_NO_EXCEPTIONS
namespace UnitTest {
AssertException::AssertException()
{
}
AssertException::~AssertException() throw()
{
}
}
#endif