zend_ce_exception   34 Zend/zend_exceptions.c ZEND_API zend_class_entry *zend_ce_exception;
zend_ce_exception   49 Zend/zend_exceptions.c 	if (instanceof_function(class_type, zend_ce_exception) || instanceof_function(class_type, zend_ce_error)) {
zend_ce_exception   55 Zend/zend_exceptions.c 		ZSTR_VAL(zend_ce_exception->name),
zend_ce_exception   63 Zend/zend_exceptions.c 	return instanceof_function(Z_OBJCE_P(object), zend_ce_exception) ? zend_ce_exception : zend_ce_error;
zend_ce_exception  342 Zend/zend_exceptions.c 		zend_update_property_string(zend_ce_exception, object, "message", sizeof("message")-1, message);
zend_ce_exception  346 Zend/zend_exceptions.c 		zend_update_property_long(zend_ce_exception, object, "code", sizeof("code")-1, code);
zend_ce_exception  350 Zend/zend_exceptions.c 		zend_update_property(zend_ce_exception, object, "previous", sizeof("previous")-1, previous);
zend_ce_exception  356 Zend/zend_exceptions.c 	    zend_update_property_string(zend_ce_exception, object, "file", sizeof("file")-1, filename);
zend_ce_exception  360 Zend/zend_exceptions.c 		zend_update_property_long(zend_ce_exception, object, "line", sizeof("line")-1, lineno);
zend_ce_exception  858 Zend/zend_exceptions.c 	zend_ce_exception = zend_register_internal_class_ex(&ce, NULL);
zend_ce_exception  859 Zend/zend_exceptions.c 	zend_ce_exception->create_object = zend_default_exception_new;
zend_ce_exception  860 Zend/zend_exceptions.c 	zend_class_implements(zend_ce_exception, 1, zend_ce_throwable);
zend_ce_exception  862 Zend/zend_exceptions.c 	zend_declare_property_string(zend_ce_exception, "message", sizeof("message")-1, "", ZEND_ACC_PROTECTED);
zend_ce_exception  863 Zend/zend_exceptions.c 	zend_declare_property_string(zend_ce_exception, "string", sizeof("string")-1, "", ZEND_ACC_PRIVATE);
zend_ce_exception  864 Zend/zend_exceptions.c 	zend_declare_property_long(zend_ce_exception, "code", sizeof("code")-1, 0, ZEND_ACC_PROTECTED);
zend_ce_exception  865 Zend/zend_exceptions.c 	zend_declare_property_null(zend_ce_exception, "file", sizeof("file")-1, ZEND_ACC_PROTECTED);
zend_ce_exception  866 Zend/zend_exceptions.c 	zend_declare_property_null(zend_ce_exception, "line", sizeof("line")-1, ZEND_ACC_PROTECTED);
zend_ce_exception  867 Zend/zend_exceptions.c 	zend_declare_property_null(zend_ce_exception, "trace", sizeof("trace")-1, ZEND_ACC_PRIVATE);
zend_ce_exception  868 Zend/zend_exceptions.c 	zend_declare_property_null(zend_ce_exception, "previous", sizeof("previous")-1, ZEND_ACC_PRIVATE);
zend_ce_exception  871 Zend/zend_exceptions.c 	zend_ce_error_exception = zend_register_internal_class_ex(&ce, zend_ce_exception);
zend_ce_exception  909 Zend/zend_exceptions.c 	return zend_ce_exception;
zend_ce_exception  927 Zend/zend_exceptions.c 			exception_ce = zend_ce_exception;
zend_ce_exception  930 Zend/zend_exceptions.c 		exception_ce = zend_ce_exception;
zend_ce_exception 1029 Zend/zend_exceptions.c 			if (instanceof_function(ce_exception, zend_ce_exception) || instanceof_function(ce_exception, zend_ce_error)) {
zend_ce_exception   30 Zend/zend_exceptions.h extern ZEND_API zend_class_entry *zend_ce_exception;
zend_ce_exception 1141 Zend/zend_generators.c 	zend_ce_ClosedGeneratorException = zend_register_internal_class_ex(&ce, zend_ce_exception);
zend_ce_exception  361 ext/com_dotnet/com_extension.c 	php_com_exception_class_entry = zend_register_internal_class_ex(&ce, zend_ce_exception);
zend_ce_exception  618 ext/dom/php_dom.c 	dom_domexception_class_entry = zend_register_internal_class_ex(&ce, zend_ce_exception);
zend_ce_exception  240 ext/intl/intl_error.c 		zend_ce_exception );
zend_ce_exception  241 ext/intl/intl_error.c 	IntlException_ce_ptr->create_object = zend_ce_exception->create_object;
zend_ce_exception  609 ext/mysqli/mysqli.c 	mysqli_exception_class_entry = zend_register_internal_class_ex(&cex, zend_ce_exception);
zend_ce_exception 1311 ext/mysqli/mysqli.c 					zend_throw_exception(zend_ce_exception, "Parameter ctor_params must be an array", 0);
zend_ce_exception 1323 ext/mysqli/mysqli.c 				zend_throw_exception_ex(zend_ce_exception, 0, "Could not execute %s::%s()", ZSTR_VAL(ce->name), ZSTR_VAL(ce->constructor->common.function_name));
zend_ce_exception 1331 ext/mysqli/mysqli.c 			zend_throw_exception_ex(zend_ce_exception, 0, "Class %s does not have a constructor hence you cannot use ctor_params", ZSTR_VAL(ce->name));
zend_ce_exception   96 ext/pdo/pdo.c  	return zend_ce_exception;
zend_ce_exception 2809 ext/pgsql/pgsql.c 					zend_throw_exception(zend_ce_exception, "Parameter ctor_params must be an array", 0);
zend_ce_exception 2821 ext/pgsql/pgsql.c 				zend_throw_exception_ex(zend_ce_exception, 0, "Could not execute %s::%s()", ce->name, ce->constructor->common.function_name);
zend_ce_exception 2829 ext/pgsql/pgsql.c 			zend_throw_exception_ex(zend_ce_exception, 0, "Class %s does not have a constructor hence you cannot use ctor_params", ce->name);
zend_ce_exception 1121 ext/phar/phar_object.c 	zend_throw_exception_ex(zend_ce_exception, 0, "Cannot instantiate Phar object without SPL extension");
zend_ce_exception 5346 ext/phar/phar_object.c 	phar_ce_PharException = zend_register_internal_class_ex(&ce, zend_ce_exception);
zend_ce_exception 6525 ext/reflection/php_reflection.c 	reflection_exception_ptr = zend_register_internal_class_ex(&_reflection_entry, zend_ce_exception);
zend_ce_exception 2319 ext/simplexml/simplexml.c 		zend_throw_exception(zend_ce_exception, "String could not be parsed as XML", 0);
zend_ce_exception 1821 ext/snmp/snmp.c 			zend_throw_exception(zend_ce_exception, "Unknown SNMP protocol version", 0);
zend_ce_exception 2420 ext/snmp/snmp.c 	php_snmp_exception_ce = zend_register_internal_class_ex(&cex, zend_ce_exception);
zend_ce_exception  686 ext/soap/soap.c 	soap_fault_class_entry = zend_register_internal_class_ex(&ce, zend_ce_exception);
zend_ce_exception 3292 ext/soap/soap.c 	zend_update_property_string(zend_ce_exception, obj, "message", sizeof("message")-1, (fault_string ? fault_string : ""));
zend_ce_exception   50 ext/spl/spl_exceptions.c #define spl_ce_Exception zend_ce_exception
zend_ce_exception   57 ext/sqlite3/sqlite3.c 		zend_throw_exception(zend_ce_exception, message, 0);
zend_ce_exception  114 ext/sqlite3/sqlite3.c 		zend_throw_exception(zend_ce_exception, "Already initialised DB Object", 0);
zend_ce_exception  123 ext/sqlite3/sqlite3.c 			zend_throw_exception(zend_ce_exception, "Unable to expand filepath", 0);
zend_ce_exception  129 ext/sqlite3/sqlite3.c 			zend_throw_exception_ex(zend_ce_exception, 0, "safe_mode prohibits opening %s", fullpath);
zend_ce_exception  136 ext/sqlite3/sqlite3.c 			zend_throw_exception_ex(zend_ce_exception, 0, "open_basedir prohibits opening %s", fullpath);
zend_ce_exception  149 ext/sqlite3/sqlite3.c 		zend_throw_exception_ex(zend_ce_exception, 0, "Unable to open database: %s", sqlite3_errmsg(db_obj->db));
zend_ce_exception  159 ext/sqlite3/sqlite3.c 			zend_throw_exception_ex(zend_ce_exception, 0, "Unable to open database: %s", sqlite3_errmsg(db_obj->db));
zend_ce_exception 1824 ext/sqlite3/sqlite3.c 	zend_throw_exception(zend_ce_exception, "SQLite3Result cannot be directly instantiated", 0);
zend_ce_exception   91 ext/standard/random.c 			zend_throw_exception(zend_ce_exception, "Could not gather sufficient random data", 0);
zend_ce_exception  128 ext/standard/random.c 				zend_throw_exception(zend_ce_exception, "Could not gather sufficient random data", errno);
zend_ce_exception  147 ext/standard/random.c 				zend_throw_exception(zend_ce_exception, "Cannot open source device", 0);
zend_ce_exception  161 ext/standard/random.c 				zend_throw_exception(zend_ce_exception, "Error reading from source device", 0);
zend_ce_exception  178 ext/standard/random.c 			zend_throw_exception(zend_ce_exception, "Could not gather sufficient random data", 0);
zend_ce_exception 1095 sapi/cli/php_cli.c 						msg = zend_read_property(zend_ce_exception, &tmp, "message", sizeof("message")-1, 0, &rv);