summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authortake_cheeze <[email protected]>2014-02-20 22:41:29 +0900
committertake_cheeze <[email protected]>2014-02-20 22:41:29 +0900
commit08ea324593de0488d12b2695eacfe00be6c05bc4 (patch)
treee3c8ed43307e5a7d467bcab39018378593976d10 /include
parent66ecd159d3ac75a153c8faa368bd16d4adfadcd8 (diff)
downloadmruby-08ea324593de0488d12b2695eacfe00be6c05bc4.tar.gz
mruby-08ea324593de0488d12b2695eacfe00be6c05bc4.zip
move src/error.h to include/mruby/error.h
Diffstat (limited to 'include')
-rw-r--r--include/mruby/error.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/mruby/error.h b/include/mruby/error.h
new file mode 100644
index 000000000..b04dc1082
--- /dev/null
+++ b/include/mruby/error.h
@@ -0,0 +1,17 @@
+/*
+** error.h - Exception class
+**
+** See Copyright Notice in mruby.h
+*/
+
+#ifndef MRUBY_ERROR_H
+#define MRUBY_ERROR_H
+
+void mrb_sys_fail(mrb_state *mrb, const char *mesg);
+mrb_value mrb_exc_new_str(mrb_state *mrb, struct RClass* c, mrb_value str);
+mrb_value mrb_make_exception(mrb_state *mrb, int argc, mrb_value *argv);
+mrb_value mrb_format(mrb_state *mrb, const char *format, ...);
+void mrb_exc_print(mrb_state *mrb, struct RObject *exc);
+void mrb_longjmp(mrb_state *mrb);
+
+#endif /* MRUBY_ERROR_H */