16 lines
193 B
C++
Raw Normal View History

2024-10-29 10:49:46 +01:00
#include "AssertException.h"
#ifndef UNITTEST_NO_EXCEPTIONS
namespace UnitTest {
AssertException::AssertException()
{}
AssertException::~AssertException() throw()
{}
}
#endif