15 lines
168 B
C++
15 lines
168 B
C++
|
#include "exception.hh"
|
||
|
|
||
|
#include <string>
|
||
|
#include <typeinfo>
|
||
|
|
||
|
namespace Kakoune
|
||
|
{
|
||
|
|
||
|
std::string exception::description() const
|
||
|
{
|
||
|
return typeid(*this).name();
|
||
|
}
|
||
|
|
||
|
}
|