Branch data Line data Source code
1 : : // file : xsd/cxx/exceptions.hxx
2 : : // copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
3 : : // license : GNU GPL v2 + exceptions; see accompanying LICENSE file
4 : :
5 : : #ifndef XSD_CXX_EXCEPTIONS_HXX
6 : : #define XSD_CXX_EXCEPTIONS_HXX
7 : :
8 : : #include <exception> // std::exception
9 : :
10 : : namespace xsd
11 : : {
12 : : namespace cxx
13 : : {
14 : 1 : struct exception: std::exception
15 : : {
16 : : };
17 : : }
18 : : }
19 : :
20 : : #endif // XSD_CXX_EXCEPTIONS_HXX
|