summaryrefslogtreecommitdiff
path: root/ACE/contrib/utility/Utility/ExH/System/Exception.hpp
blob: 0ed7fbfa97581d958f7b7b1996977e55a4da9674 (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
26
27
28
29
// file      : Utility/ExH/System/Exception.hpp
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2002-2003 Boris Kolpackov
// license   : http://kolpackov.net/license.html

#ifndef UTILITY_EX_H_SYSTEM_EXCEPTION_HPP
#define UTILITY_EX_H_SYSTEM_EXCEPTION_HPP

#include <exception>

namespace Utility
{
  namespace ExH
  {
    namespace System
    {
      // This is the only way to make predefined exceptions like
      // std::bad_alloc, etc to appear in the right place of the hierarchy.
      //

      typedef std::exception Exception;
    }
  }
}

#endif  // UTILITY_EX_H_SYSTEM_EXCEPTION_HPP


//$Id$