subrepo: subdir: "components/etl" merged: "be5537ec" upstream: origin: "git@github.com:ETLCPP/etl.git" branch: "20.41.6" commit: "be5537ec" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
23 lines
367 B
C++
23 lines
367 B
C++
#ifndef UNITTEST_ASSERTEXCEPTION_H
|
|
#define UNITTEST_ASSERTEXCEPTION_H
|
|
|
|
#include "Config.h"
|
|
#ifndef UNITTEST_NO_EXCEPTIONS
|
|
|
|
#include "HelperMacros.h"
|
|
#include <exception>
|
|
|
|
namespace UnitTest {
|
|
|
|
class UNITTEST_LINKAGE AssertException : public std::exception
|
|
{
|
|
public:
|
|
AssertException();
|
|
virtual ~AssertException() throw();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|