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