summaryrefslogtreecommitdiff
path: root/libcult/cult/eh/exception.hxx
blob: 266c591cc51db40bcd2a55bbb353fcdf218d4cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// file      : cult/eh/exception.hxx
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2005-2010 Boris Kolpackov
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef CULT_EH_EXCEPTION_HXX
#define CULT_EH_EXCEPTION_HXX

#include <cult/types/fundamental.hxx>

#include <exception> // std::exception

namespace Cult
{
  namespace EH
  {
    struct Exception : std::exception
    {
      virtual Char const*
      what () const throw ();
    };
  }
}

#endif  // CULT_EH_EXCEPTION_HXX