aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/exceptions.hxx
blob: 3accf81a8b5960882995be68b95d93ece1cf4048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// file      : xsde/cxx/exceptions.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// 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 <exception> // std::exception

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

#endif  // XSDE_CXX_EXCEPTIONS_HXX