summary refs log tree commit
path: root/ext/json/ext/parser/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/json/ext/parser/parser.h')
-rw-r--r--ext/json/ext/parser/parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/ext/parser/parser.h b/ext/json/ext/parser/parser.h
index 904156f..2be640e 100644
--- a/ext/json/ext/parser/parser.h
+++ b/ext/json/ext/parser/parser.h
@@ -52,7 +52,7 @@ typedef struct JSON_ParserStruct {
 
 #define GET_PARSER                          \
     GET_PARSER_INIT;                        \
-    if (!json->Vsource) rb_raise(rb_eArgError, "uninitialized instance")
+    if (!json->Vsource) rb_raise(rb_eTypeError, "uninitialized instance")
 #define GET_PARSER_INIT                     \
     JSON_Parser *json;                      \
     Data_Get_Struct(self, JSON_Parser, json)