kakoune/src/exception.cc
2012-04-14 01:17:09 +00:00

15 lines
166 B
C++

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