Exception: Glu::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Glu::Error
- Defined in:
- ext/glu/glu.c
Instance Attribute Summary collapse
- #id ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(message, error_id) ⇒ Object
constructor
never gets here.
Constructor Details
#initialize(message, error_id) ⇒ Object
never gets here
129 130 131 132 133 134 135 |
# File 'ext/glu/glu.c', line 129
VALUE GLUError_initialize(VALUE obj,VALUE message, VALUE error_id)
{
rb_call_super(1, &message);
rb_iv_set(obj, "@id", error_id);
return obj;
}
|