Exception: PHPVM::PHPExceptionObject

Inherits:
PHPError
  • Object
show all
Defined in:
ext/php_vm/php_vm.c

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Object

class PHPVM::PHPExceptionObject



1228
1229
1230
1231
1232
# File 'ext/php_vm/php_vm.c', line 1228

VALUE rb_php_exception_object_initialize(int argc, VALUE *argv, VALUE self)
{
	rb_call_super(argc, argv);
	return self;
}

Instance Method Details

#php_classObject



1037
1038
1039
1040
# File 'ext/php_vm/php_vm.c', line 1037

VALUE rb_php_object_php_class(VALUE self)
{
	return rb_iv_get(self, "php_class");
}