mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-26 16:19:30 +03:00
Rather than re-using AssertException, it felt more correct to create a new special-purpose exception.
17 lines
236 B
C++
17 lines
236 B
C++
#include "RequiredCheckException.h"
|
|
|
|
#ifndef UNITTEST_NO_EXCEPTIONS
|
|
|
|
namespace UnitTest {
|
|
|
|
RequiredCheckException::RequiredCheckException()
|
|
{
|
|
}
|
|
|
|
RequiredCheckException::~RequiredCheckException() throw()
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|