etl/test/UnitTest++/RequiredCheckException.cpp
2022-03-20 22:41:59 +00:00

18 lines
236 B
C++

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