Initial commit, version 0.1.0.
[libfsafe.git] / libfsafe / UnexpectedException.hxx
blobea335f9bce9b9f96a6570e5d762b93d2a0ca315b
1 /**
2 * @file
4 * Contains declaration of @ref
5 * libfsafe::UnexpectedException.
6 */
8 #ifndef LIBFSAFE_UNEXPECTEDEXCEPTION_HXX
9 #define LIBFSAFE_UNEXPECTEDEXCEPTION_HXX
11 #include <libsex/Exception.hxx>
12 #include <libsex/declare.hxx>
14 /**
15 * @class libfsafe::UnexpectedException
17 * To be thrown when a statement threw an exception that
18 * was not anticipated, i.e. wrapping and letting the error
19 * bubble up.
21 * Inherits from libsex::Exception.:wa
23 namespace libfsafe
25 LIBSEX_DECLARE(libsex::Exception, UnexpectedException)
28 #endif