Files
Cpp-in-Embedded-Systems/Chapter17/fsm/libs/etl/test/UnitTest++/RequiredCheckException.cpp
Amar Mahmutbegovic a1b36d343e add Chapter17
2025-01-11 12:48:14 +01:00

18 lines
236 B
C++

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