diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-07-12 21:29:46 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-07-12 21:29:46 +0900 |
| commit | 4501598f27b3733d02210be43c4a05a0f081ff62 (patch) | |
| tree | 0099346f637cb576701186d23cf7f5a6c17db1d3 /include | |
| parent | 4a6c651f82c2d416682e9729842d4fda6beee2bf (diff) | |
| download | mruby-4501598f27b3733d02210be43c4a05a0f081ff62.tar.gz mruby-4501598f27b3733d02210be43c4a05a0f081ff62.zip | |
use SystemStackError instead of RuntimeError
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby.h b/include/mruby.h index d91e024d1..5c99052c1 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -385,6 +385,7 @@ void mrb_print_error(mrb_state *mrb); #define E_SYNTAX_ERROR (mrb_class_get(mrb, "SyntaxError")) #define E_LOCALJUMP_ERROR (mrb_class_get(mrb, "LocalJumpError")) #define E_REGEXP_ERROR (mrb_class_get(mrb, "RegexpError")) +#define E_SYSSTACK_ERROR (mrb_class_get(mrb, "SystemStackError")) #define E_NOTIMP_ERROR (mrb_class_get(mrb, "NotImplementedError")) #define E_FLOATDOMAIN_ERROR (mrb_class_get(mrb, "FloatDomainError")) |
