Exception: Glu::Error

Inherits:
StandardError
  • Object
show all
Defined in:
ext/glu/glu.c

Instance Attribute Summary collapse

Instance Method Summary collapse

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;
}

Instance Attribute Details

#idObject (readonly)