20 lines
339 B
C++
20 lines
339 B
C++
|
// file : xsd/cxx/exceptions.hxx
|
||
|
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
|
||
|
|
||
|
#ifndef XSD_CXX_EXCEPTIONS_HXX
|
||
|
#define XSD_CXX_EXCEPTIONS_HXX
|
||
|
|
||
|
#include <exception> // std::exception
|
||
|
|
||
|
namespace xsd
|
||
|
{
|
||
|
namespace cxx
|
||
|
{
|
||
|
struct exception: std::exception
|
||
|
{
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // XSD_CXX_EXCEPTIONS_HXX
|