// file : xsde/cxx/exceptions.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef XSDE_CXX_EXCEPTIONS_HXX #define XSDE_CXX_EXCEPTIONS_HXX #include // std::exception namespace xsde { namespace cxx { struct exception: std::exception { }; } } #endif // XSDE_CXX_EXCEPTIONS_HXX