aboutsummaryrefslogtreecommitdiff
path: root/cutl/exception.cxx
blob: 6f69aa7f4f106f0b72998ec9cb250b0c2dd69baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file      : cutl/exception.cxx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <typeinfo>

#include <cutl/exception.hxx>

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