1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-20 01:41:40 +03:00
kakoune/src/exception.cc

16 lines
167 B
C++
Raw Normal View History

2011-09-09 22:40:59 +04:00
#include "exception.hh"
#include "string.hh"
2013-04-09 22:05:40 +04:00
2011-09-09 22:40:59 +04:00
#include <typeinfo>
namespace Kakoune
{
String exception::description() const
2011-09-09 22:40:59 +04:00
{
return typeid(*this).name();
}
}