Fixed include directory name.
[libsex.git] / tests / framework / MockException.hxx
blob2d04ee15cb5e78c1c65a8c8433a63b775cbab9ec
1 #ifndef MOCKEXCEPTION_HXX
2 #define MOCKEXCEPTION_HXX
4 #include <libsex/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