Lines Matching refs:exception_object
1498 zval exception_object; in _soap_server_exception() local
1500 ZVAL_OBJ(&exception_object, EG(exception)); in _soap_server_exception()
1501 if (instanceof_function(Z_OBJCE(exception_object), soap_fault_class_entry)) { in _soap_server_exception()
1502 soap_server_fault_ex(function, &exception_object, NULL); in _soap_server_exception()
1503 } else if (instanceof_function(Z_OBJCE(exception_object), zend_ce_error)) { in _soap_server_exception()
1506 …zend_string *msg = zval_get_string(zend_read_property(zend_ce_error, &exception_object, "message",… in _soap_server_exception()
1507 add_soap_fault_ex(&exception_object, this_ptr, "Server", ZSTR_VAL(msg), NULL, NULL); in _soap_server_exception()
1510 add_soap_fault_ex(&exception_object, this_ptr, "Server", "Internal Error", NULL, NULL); in _soap_server_exception()
1512 soap_server_fault_ex(function, &exception_object, NULL); in _soap_server_exception()
2600 zval exception_object; local
2602 ZVAL_OBJ(&exception_object, EG(exception));
2603 …msg = zval_get_string(zend_read_property(zend_ce_error, &exception_object, "message", sizeof("mess…
2606 set_soap_fault(&exception_object, NULL, "Client", ZSTR_VAL(msg), NULL, NULL, NULL);