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

#include <typeinfo>

#include <libcutl/exception.hxx>

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