// file : libcutl/exception.cxx // license : MIT; see accompanying LICENSE file #include #include namespace cutl { char const* exception:: what () const noexcept { return typeid (*this).name (); } }