Added RETHROW macro, functionality, tests, examples, etc.
[libsex.git] / tests / framework / MockException.cxx
blob21438799e3a86c8f61b4b37beb1c3c047523ff96
1 #include <tests/framework/MockException.hxx>
3 const char* const MockException::TEMPLATE = "%s=%d";
5 MockException::MockException(const char* const message) throw()
6 : libsex::Exception(message)
10 MockException::MockException(
11 const char* const message,
12 const libsex::Exception& previous) throw()
13 : libsex::Exception(message, previous)