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

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

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