aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/exceptions.hxx
blob: 9e751efac020cedb7fc27620682d18b7d07df12f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// file      : xsde/cxx/exceptions.hxx
// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSDE_CXX_EXCEPTIONS_HXX
#define XSDE_CXX_EXCEPTIONS_HXX

#include <exception> // std::exception

namespace xsde
{
  namespace cxx
  {
    struct exception: std::exception
    {
    };
  }
}

#endif  // XSDE_CXX_EXCEPTIONS_HXX