Lines Matching refs:zend_ce_exception

34 ZEND_API zend_class_entry *zend_ce_exception;  variable
86 return instanceof_function(object->ce, zend_ce_exception) ? zend_ce_exception : zend_ce_error; in i_get_exception_base()
369 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp); in ZEND_METHOD()
375 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in ZEND_METHOD()
379 …zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_PREVIOUS), previou… in ZEND_METHOD()
383 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_SEVERITY), &tmp); in ZEND_METHOD()
387 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_FILE), &tmp); in ZEND_METHOD()
393 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_LINE), &tmp); in ZEND_METHOD()
396 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_LINE), &tmp); in ZEND_METHOD()
758 zend_ce_exception = register_class_Exception(zend_ce_throwable); in zend_register_default_exception()
759 zend_init_exception_class_entry(zend_ce_exception); in zend_register_default_exception()
761 zend_ce_error_exception = register_class_ErrorException(zend_ce_exception); in zend_register_default_exception()
791 zend_ce_request_parse_body_exception = register_class_RequestParseBodyException(zend_ce_exception); in zend_register_default_exception()
803 return zend_ce_exception; in zend_exception_get_default()
819 exception_ce = zend_ce_exception; in zend_throw_exception_zstr()
933 …if (instanceof_function(ce_exception, zend_ce_exception) || instanceof_function(ce_exception, zend… in zend_exception_error()