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

#include <odb/details/posix/exceptions.hxx>

namespace odb
{
  namespace details
  {
    const char* posix_exception::
    what () const throw ()
    {
      return "POSIX API error";
    }
  }
}