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

16 lines
193 B
C++

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