Method: SyntaxError#initialize

Defined in:
error.c

#new([msg]) ⇒ Object

Construct a SyntaxError exception.

[View source]

2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
# File 'error.c', line 2135

static VALUE
syntax_error_initialize(int argc, VALUE *argv, VALUE self)
{
    VALUE mesg;
    if (argc == 0) {
	mesg = rb_fstring_lit("compile error");
	argc = 1;
	argv = &mesg;
    }
    return rb_call_super(argc, argv);
}