Home
last modified time | relevance | path

Searched refs:ce_exception (Results 1 – 1 of 1) sorted by relevance

/PHP-8.3/Zend/
H A Dzend_exceptions.c905 zend_class_entry *ce_exception; in zend_exception_error() local
909 ce_exception = ex->ce; in zend_exception_error()
911 if (ce_exception == zend_ce_parse_error || ce_exception == zend_ce_compile_error) { in zend_exception_error()
915 int type = (ce_exception == zend_ce_parse_error ? E_PARSE : E_COMPILE_ERROR) | E_DONT_BAIL; in zend_exception_error()
922 } else if (instanceof_function(ce_exception, zend_ce_throwable)) { in zend_exception_error()
930 zend_error(E_WARNING, "%s::__toString() must return a string", ZSTR_VAL(ce_exception->name)); in zend_exception_error()
942 …if (instanceof_function(ce_exception, zend_ce_exception) || instanceof_function(ce_exception, zend… in zend_exception_error()
949 ZSTR_VAL(Z_OBJCE(zv)->name), ZSTR_VAL(ce_exception->name)); in zend_exception_error()
967 } else if (ce_exception == &zend_ce_unwind_exit || ce_exception == &zend_ce_graceful_exit) { in zend_exception_error()
971 zend_error(severity, "Uncaught exception %s", ZSTR_VAL(ce_exception->name)); in zend_exception_error()

Completed in 6 milliseconds