kakoune/src/exception.cc
2011-09-09 18:40:59 +00:00

15 lines
168 B
C++

#include "exception.hh"
#include <string>
#include <typeinfo>
namespace Kakoune
{
std::string exception::description() const
{
return typeid(*this).name();
}
}