2011-09-09 20:40:59 +02:00
|
|
|
#include "exception.hh"
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
#include "string.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
|
2011-09-09 20:40:59 +02:00
|
|
|
#include <typeinfo>
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-04-11 13:57:35 +02:00
|
|
|
const char* exception::what() const
|
2011-09-09 20:40:59 +02:00
|
|
|
{
|
|
|
|
return typeid(*this).name();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|