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()
372 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp); in ZEND_METHOD()
378 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in ZEND_METHOD()
382 …zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_PREVIOUS), previou… in ZEND_METHOD()
386 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_SEVERITY), &tmp); in ZEND_METHOD()
390 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_FILE), &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()
399 zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_LINE), &tmp); in ZEND_METHOD()
764 zend_ce_exception = register_class_Exception(zend_ce_throwable); in zend_register_default_exception()
765 zend_init_exception_class_entry(zend_ce_exception); in zend_register_default_exception()
767 zend_ce_error_exception = register_class_ErrorException(zend_ce_exception); in zend_register_default_exception()
797 zend_ce_request_parse_body_exception = register_class_RequestParseBodyException(zend_ce_exception); in zend_register_default_exception()
809 return zend_ce_exception; in zend_exception_get_default()
825 exception_ce = zend_ce_exception; in zend_throw_exception_zstr()
938 …if (instanceof_function(ce_exception, zend_ce_exception) || instanceof_function(ce_exception, zend… in zend_exception_error()