exception_handler  213 Zend/zend_builtin_functions.c 	ZEND_ARG_INFO(0, exception_handler)
exception_handler 1784 Zend/zend_builtin_functions.c 	zval *exception_handler;
exception_handler 1787 Zend/zend_builtin_functions.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &exception_handler) == FAILURE) {
exception_handler 1791 Zend/zend_builtin_functions.c 	if (Z_TYPE_P(exception_handler) != IS_NULL) { /* NULL == unset */
exception_handler 1792 Zend/zend_builtin_functions.c 		if (!zend_is_callable(exception_handler, 0, &exception_handler_name)) {
exception_handler 1807 Zend/zend_builtin_functions.c 	if (Z_TYPE_P(exception_handler) == IS_NULL) { /* unset user-defined handler */
exception_handler 1812 Zend/zend_builtin_functions.c 	ZVAL_COPY(&EG(user_exception_handler), exception_handler);