Fixed include directory name.
[libsex.git] / tests / framework / ExampleException1.cxx
blob57bb52bd37148276e61453ed41b7ab65187b0936
1 /**
2 * @file
3 * Shows how to _define_ a basic exception class.
4 */
6 #include <libsex/define.hxx>
7 #include <libsex/Exception.hxx>
8 #include <tests/framework/ExampleException1.hxx>
10 // Define ExampleException1 and provide a message template.
11 // If you want to localize your exceptions, you just have
12 // to localize the following line.
14 LIBSEX_DEFINE(libsex::Exception, ExampleException1, "Error!")