aboutsummaryrefslogtreecommitdiff
path: root/cutl/exception.cxx
blob: 6e9924dea661df7b2e86ad69dbf2101c4e0e868d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// file      : cutl/exception.cxx
// license   : MIT; see accompanying LICENSE file

#include <typeinfo>

#include <cutl/exception.hxx>

namespace cutl
{
  char const* exception::
  what () const LIBCUTL_NOTHROW_NOEXCEPT
  {
    return typeid (*this).name ();
  }
}