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
|
|
|
|
{
|
|
|
|
|
2015-03-13 14:15:51 +01:00
|
|
|
StringView exception::what() const
|
2011-09-09 20:40:59 +02:00
|
|
|
{
|
|
|
|
return typeid(*this).name();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|