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