Switched from autotools to CMake.
[libsex.git] / tests / framework / MockException.hxx
blob2d08fb448d7572f0a4f24dcba02772ee6cb42866
1 #ifndef MOCKEXCEPTION_HXX
2 #define MOCKEXCEPTION_HXX
4 #include <source/Exception.hxx>
6 class MockException : public libsex::Exception
8 public:
9 static const char* const TEMPLATE;
11 MockException(const char* const message) throw();
12 MockException(
13 const char* const message,
14 const libsex::Exception& previous) throw();
17 #endif