-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmrubyexception.hpp
135 lines (108 loc) · 2.23 KB
/
mrubyexception.hpp
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#ifndef __MRUBYEXCEPTION_HPP__
#define __MRUBYEXCEPTION_HPP__
#include <string>
#include <sstream>
class Exception : public std::exception
{
public:
Exception(const std::string &type, const std::string &msg, const std::string &name)
{
std::stringstream s;
s << type << ": " << msg << ": " << name;
error = s.str();
}
virtual ~Exception()
{ }
const char *what() const noexcept
{
return error.c_str();
}
protected:
std::string error;
};
// Exceptions that occur outside the VM
class NameError : public Exception
{
public:
NameError(const std::string &msg, const std::string &name)
: Exception("NameError", msg, name)
{ }
virtual ~NameError()
{ }
};
class NotImplementedError : public Exception
{
public:
NotImplementedError(const std::string &msg, const std::string &name)
: Exception("NotImplementedError", msg, name)
{ }
virtual ~NotImplementedError()
{ }
};
class TypeError : public Exception
{
public:
TypeError(const std::string &msg, const std::string &name)
: Exception("TypeError", msg, name)
{ }
virtual ~TypeError()
{ }
};
class ArgumentError : public Exception
{
public:
ArgumentError(const std::string &msg, const std::string &name)
: Exception("ArgumentError", msg, name)
{ }
virtual ~ArgumentError()
{ }
};
// Exceptions that occur inside the VM
class RubyException : public std::exception
{
public:
RubyException()
: error("Exception in C binding")
{ }
RubyException(const std::string &type, const std::string &msg)
{
std::stringstream s;
s << type << " in C binding";
if (msg != "")
{
s << ": " << msg;
}
error = s.str();
}
virtual ~RubyException()
{ }
const char *what() const noexcept
{
return error.c_str();
}
protected:
std::string error;
};
class RubyStandardError : public RubyException
{
public:
RubyStandardError(const std::string &msg="")
: RubyException("StandardError", msg)
{ }
virtual ~RubyStandardError()
{ }
protected:
RubyStandardError(const std::string &type, const std::string &msg)
: RubyException(type, msg)
{ }
};
class RubyRuntimeError : public RubyStandardError
{
public:
RubyRuntimeError(const std::string &msg="")
: RubyStandardError("RuntimeError", msg)
{ }
virtual ~RubyRuntimeError()
{ }
};
#endif // __MRUBYEXCEPTION_HPP__