fsfw/contrib/fsfw_contrib/etl-20.39.4/test/UnitTest++/AssertException.h

24 lines
367 B
C
Raw Normal View History

2024-10-29 10:49:46 +01:00
#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