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



1177
1178
1179
1180
1181
# File 'ext/php_vm/php_vm.c', line 1177

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

Instance Method Details

#php_classObject



1042
1043
1044
1045
# File 'ext/php_vm/php_vm.c', line 1042

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