G+Smo  25.01.0
Geometry + Simulation Modules
 
Loading...
Searching...
No Matches
AssertException.h
1#ifndef UNITTEST_ASSERTEXCEPTION_H
2#define UNITTEST_ASSERTEXCEPTION_H
3
4#include "Config.h"
5#ifndef UNITTEST_NO_EXCEPTIONS
6
7#include "HelperMacros.h"
8#include <exception>
9
10namespace UnitTest {
11
12class UNITTEST_LINKAGE AssertException : public std::exception
13{
14public:
15 AssertException();
16 virtual ~AssertException() throw();
17};
18
19}
20
21#endif
22
23#endif