aboutsummaryrefslogtreecommitdiff
path: root/cutl/exception.cxx
blob: 726d3e476b33e414999922c1c08d7649b9fb0773 (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-2011 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 ();
  }
}