exception_ce 831 Zend/zend_exceptions.c ZEND_API zval * zend_throw_exception(zend_class_entry *exception_ce, const char *message, long code TSRMLS_DC) /* {{{ */ exception_ce 836 Zend/zend_exceptions.c if (exception_ce) { exception_ce 837 Zend/zend_exceptions.c if (!instanceof_function(exception_ce, default_exception_ce TSRMLS_CC)) { exception_ce 839 Zend/zend_exceptions.c exception_ce = default_exception_ce; exception_ce 842 Zend/zend_exceptions.c exception_ce = default_exception_ce; exception_ce 844 Zend/zend_exceptions.c object_init_ex(ex, exception_ce); exception_ce 859 Zend/zend_exceptions.c ZEND_API zval * zend_throw_exception_ex(zend_class_entry *exception_ce, long code TSRMLS_DC, const char *format, ...) /* {{{ */ exception_ce 868 Zend/zend_exceptions.c zexception = zend_throw_exception(exception_ce, message, code TSRMLS_CC); exception_ce 874 Zend/zend_exceptions.c ZEND_API zval * zend_throw_error_exception(zend_class_entry *exception_ce, const char *message, long code, int severity TSRMLS_DC) /* {{{ */ exception_ce 876 Zend/zend_exceptions.c zval *ex = zend_throw_exception(exception_ce, message, code TSRMLS_CC); exception_ce 944 Zend/zend_exceptions.c zend_class_entry *exception_ce; exception_ce 950 Zend/zend_exceptions.c exception_ce = Z_OBJCE_P(exception); exception_ce 952 Zend/zend_exceptions.c if (!exception_ce || !instanceof_function(exception_ce, default_exception_ce TSRMLS_CC)) { exception_ce 43 Zend/zend_exceptions.h ZEND_API zval * zend_throw_exception(zend_class_entry *exception_ce, const char *message, long code TSRMLS_DC); exception_ce 44 Zend/zend_exceptions.h ZEND_API zval * zend_throw_exception_ex(zend_class_entry *exception_ce, long code TSRMLS_DC, const char *format, ...); exception_ce 48 Zend/zend_exceptions.h ZEND_API zval * zend_throw_error_exception(zend_class_entry *exception_ce, const char *message, long code, int severity TSRMLS_DC);