Files
Cpp-in-Embedded-Systems/Chapter18/cib/libs/etl/test/UnitTest++/RequiredCheckException.cpp
Amar Mahmutbegovic 8634accda5 add Chapter18
2025-02-06 00:19:59 +01:00

18 lines
236 B
C++

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