aboutsummaryrefslogtreecommitdiff
path: root/cutl/exception.cxx
blob: e8389f784dbf2688f8fe4d5c80e9a2d72d056ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// file      : cutl/exception.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009 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 ();
  }
}