Searched refs:ce_exception (Results 1 – 1 of 1) sorted by relevance
901 zend_class_entry *ce_exception; in zend_exception_error() local905 ce_exception = ex->ce; in zend_exception_error()907 if (ce_exception == zend_ce_parse_error || ce_exception == zend_ce_compile_error) { in zend_exception_error()911 int type = (ce_exception == zend_ce_parse_error ? E_PARSE : E_COMPILE_ERROR) | E_DONT_BAIL; in zend_exception_error()918 } else if (instanceof_function(ce_exception, zend_ce_throwable)) { in zend_exception_error()926 zend_error(E_WARNING, "%s::__toString() must return a string", ZSTR_VAL(ce_exception->name)); in zend_exception_error()938 …if (instanceof_function(ce_exception, zend_ce_exception) || instanceof_function(ce_exception, zend… in zend_exception_error()945 ZSTR_VAL(Z_OBJCE(zv)->name), ZSTR_VAL(ce_exception->name)); in zend_exception_error()962 } else if (ce_exception == &zend_ce_unwind_exit || ce_exception == &zend_ce_graceful_exit) { in zend_exception_error()966 zend_error(severity, "Uncaught exception %s", ZSTR_VAL(ce_exception->name)); in zend_exception_error()
Completed in 6 milliseconds