blob: 08647637020a23e2b7c1af762b9f8c773236bf05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef exception_hh_INCLUDED
#define exception_hh_INCLUDED
#include "string.hh"
namespace Kakoune
{
struct exception
{
virtual ~exception() {}
virtual const char* what() const;
};
struct runtime_error : exception
{
runtime_error(String what)
: m_what(std::move(what)) {}
const char* what() const override { return m_what.c_str(); }
private:
String m_what;
};
struct logic_error : exception
{
};
}
#endif // exception_hh_INCLUDED
|