mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
18 lines
236 B
C++
18 lines
236 B
C++
#include "RequiredCheckException.h"
|
|
|
|
#ifndef UNITTEST_NO_EXCEPTIONS
|
|
|
|
namespace UnitTest {
|
|
|
|
RequiredCheckException::RequiredCheckException()
|
|
{
|
|
}
|
|
|
|
RequiredCheckException::~RequiredCheckException() throw()
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|