aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32/exceptions.cxx
blob: 3cf11c28ab5e5d2df537050f59625eb3aaf679df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// file      : odb/details/win32/exceptions.cxx
// license   : GNU GPL v2; see accompanying LICENSE file

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

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

    win32_exception* win32_exception::
    clone () const
    {
      return new win32_exception (*this);
    }
  }
}