// file : odb/exception.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include #include namespace odb { const char* exception:: what () const throw () { return typeid (*this).name (); } }