kakoune/src/exception.cc
2013-04-09 20:05:40 +02:00

16 lines
167 B
C++

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