aboutsummaryrefslogtreecommitdiff
path: root/odb/boost/exceptions.cxx
blob: 038efe4ca86ba3c28e8ef636c6389527f46e6884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// file      : odb/boost/exceptions.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <odb/boost/exceptions.hxx>

using namespace std;

namespace odb
{
  namespace boost
  {
    const char* dummy_exception::
    what () const throw ()
    {
      return "dummy exception";
    }
  }
}