Files
Cpp-in-Embedded-Systems/Chapter14/sequencer/libs/etl/test/UnitTest++/RequiredCheckException.cpp
Amar Mahmutbegovic b378383cf5 add Chapter14
2024-11-19 21:29:22 +01:00

18 lines
236 B
C++

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