// file : cutl/exception.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : MIT; see accompanying LICENSE file #include #include namespace cutl { char const* exception:: what () const throw () { return typeid (*this).name (); } }