exception_ce     1297 Zend/zend.c    ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format, ...) /* {{{ */
exception_ce     1302 Zend/zend.c    	if (exception_ce) {
exception_ce     1303 Zend/zend.c    		if (!instanceof_function(exception_ce, zend_ce_error)) {
exception_ce     1305 Zend/zend.c    			exception_ce = zend_ce_error;
exception_ce     1308 Zend/zend.c    		exception_ce = zend_ce_error;
exception_ce     1316 Zend/zend.c    		zend_throw_exception(exception_ce, message, 0);
exception_ce      290 Zend/zend.h    ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format, ...);
exception_ce      920 Zend/zend_exceptions.c ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *message, zend_long code) /* {{{ */
exception_ce      924 Zend/zend_exceptions.c 	if (exception_ce) {
exception_ce      925 Zend/zend_exceptions.c 		if (!instanceof_function(exception_ce, zend_ce_throwable)) {
exception_ce      927 Zend/zend_exceptions.c 			exception_ce = zend_ce_exception;
exception_ce      930 Zend/zend_exceptions.c 		exception_ce = zend_ce_exception;
exception_ce      932 Zend/zend_exceptions.c 	object_init_ex(&ex, exception_ce);
exception_ce      936 Zend/zend_exceptions.c 		zend_update_property_string(exception_ce, &ex, "message", sizeof("message")-1, message);
exception_ce      939 Zend/zend_exceptions.c 		zend_update_property_long(exception_ce, &ex, "code", sizeof("code")-1, code);
exception_ce      947 Zend/zend_exceptions.c ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long code, const char *format, ...) /* {{{ */
exception_ce      956 Zend/zend_exceptions.c 	obj = zend_throw_exception(exception_ce, message, code);
exception_ce      962 Zend/zend_exceptions.c ZEND_API ZEND_COLD zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *message, zend_long code, int severity) /* {{{ */
exception_ce      965 Zend/zend_exceptions.c 	zend_object *obj = zend_throw_exception(exception_ce, message, code);
exception_ce     1062 Zend/zend_exceptions.c 	zend_class_entry *exception_ce;
exception_ce     1068 Zend/zend_exceptions.c 	exception_ce = Z_OBJCE_P(exception);
exception_ce     1070 Zend/zend_exceptions.c 	if (!exception_ce || !instanceof_function(exception_ce, zend_ce_throwable)) {
exception_ce       58 Zend/zend_exceptions.h ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *message, zend_long code);
exception_ce       59 Zend/zend_exceptions.h ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long code, const char *format, ...);
exception_ce       63 Zend/zend_exceptions.h ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *message, zend_long code, int severity);
exception_ce      212 Zend/zend_execute_API.c static void zend_throw_or_error(int fetch_type, zend_class_entry *exception_ce, const char *format, ...) /* {{{ */
exception_ce      221 Zend/zend_execute_API.c 		zend_throw_error(exception_ce, "%s", message);