Home
last modified time | relevance | path

Searched refs:exception (Results 1 – 25 of 813) sorted by relevance

12345678910>>...33

/PHP-8.0/ext/com_dotnet/tests/
H A Dvariants.phpt77 exception Type mismatch
83 exception Type mismatch
88 exception Type mismatch
93 exception Type mismatch
98 exception Type mismatch
103 exception Type mismatch
108 exception Type mismatch
113 exception Type mismatch
118 exception Type mismatch
123 exception Type mismatch
[all …]
H A Dvariants_x64.phpt80 exception Type mismatch
86 exception Type mismatch
91 exception Type mismatch
96 exception Type mismatch
101 exception Type mismatch
106 exception Type mismatch
111 exception Type mismatch
116 exception Type mismatch
121 exception Type mismatch
126 exception Type mismatch
[all …]
/PHP-8.0/ext/gettext/tests/
H A D44938.phpt17 } catch (ValueError $exception) {
23 } catch (ValueError $exception) {
29 } catch (ValueError $exception) {
35 } catch (ValueError $exception) {
41 } catch (ValueError $exception) {
47 } catch (ValueError $exception) {
53 } catch (ValueError $exception) {
59 } catch (ValueError $exception) {
65 } catch (ValueError $exception) {
71 } catch (ValueError $exception) {
[all …]
/PHP-8.0/ext/standard/tests/mail/
H A Dmail_basic7.phpt47 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
53 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
59 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
65 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
71 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
77 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
83 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
89 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
102 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
108 echo get_class($exception) . ": " . $exception->getMessage() . "\n";
[all …]
/PHP-8.0/tests/lang/
H A Derror_2_exception_001.phpt31 } catch (MyException $exception) {
32 …echo "There was an exception: " . $exception->getErrno() . ", '" . $exception->getErrmsg() . "'\n";
36 trigger_error("I will become an exception", E_USER_ERROR);
37 } catch (MyException $exception) {
38 …echo "There was an exception: " . $exception->getErrno() . ", '" . $exception->getErrmsg() . "'\n";
43 There was an exception: 256, 'I will become an exception'
H A D035.phpt18 throw new MyException("'This is an exception!'");
23 } catch (MyException $exception) {
24 print "There shouldn't be an exception: " . $exception->getException();
30 } catch (MyException $exception) {
31 print "There was an exception: " . $exception->getException();
36 There was an exception: 'This is an exception!'
/PHP-8.0/ext/standard/tests/strings/
H A Dbug40754.phpt15 } catch (ValueError $exception) {
16 echo $exception->getMessage() . "\n";
21 } catch (ValueError $exception) {
27 } catch (ValueError $exception) {
33 } catch (ValueError $exception) {
39 } catch (ValueError $exception) {
45 } catch (ValueError $exception) {
51 } catch (ValueError $exception) {
57 } catch (ValueError $exception) {
63 } catch (ValueError $exception) {
[all …]
H A Dstrripos_offset.phpt14 } catch (ValueError $exception) {
15 echo $exception->getMessage() . "\n";
20 } catch (ValueError $exception) {
21 echo $exception->getMessage() . "\n";
26 } catch (ValueError $exception) {
27 echo $exception->getMessage() . "\n";
32 } catch (ValueError $exception) {
33 echo $exception->getMessage() . "\n";
H A Dstrrpos_offset.phpt14 } catch (ValueError $exception) {
15 echo $exception->getMessage() . "\n";
20 } catch (ValueError $exception) {
21 echo $exception->getMessage() . "\n";
26 } catch (ValueError $exception) {
27 echo $exception->getMessage() . "\n";
32 } catch (ValueError $exception) {
33 echo $exception->getMessage() . "\n";
H A Dsubstr_count_error.phpt12 } catch (ValueError $exception) {
13 echo $exception->getMessage() . "\n";
19 } catch (ValueError $exception) {
20 echo $exception->getMessage() . "\n";
27 } catch (ValueError $exception) {
28 echo $exception->getMessage() . "\n";
34 } catch (ValueError $exception) {
35 echo $exception->getMessage() . "\n";
/PHP-8.0/ext/standard/tests/password/
H A Dpassword_hash_error_argon2.phpt13 } catch (ValueError $exception) {
14 echo $exception->getMessage() . "\n";
19 } catch (ValueError $exception) {
20 echo $exception->getMessage() . "\n";
25 } catch (ValueError $exception) {
26 echo $exception->getMessage() . "\n";
31 } catch (ValueError $exception) {
32 echo $exception->getMessage() . "\n";
37 } catch (ValueError $exception) {
38 echo $exception->getMessage() . "\n";
[all …]
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_class_mysqli_properties_no_conn.phpt20 } catch (Error $exception) {
38 } catch (Error $exception) {
44 } catch (Error $exception) {
50 } catch (Error $exception) {
58 } catch (Error $exception) {
64 } catch (Error $exception) {
70 } catch (Error $exception) {
76 } catch (Error $exception) {
82 } catch (Error $exception) {
88 } catch (Error $exception) {
[all …]
/PHP-8.0/Zend/
H A Dzend_exceptions.c127 if (EG(exception)) { in zend_exception_save()
130 EG(exception) = NULL; in zend_exception_save()
175 zend_exception_set_previous(exception, EG(exception)); in zend_throw_exception_internal()
176 EG(exception) = exception; in zend_throw_exception_internal()
183 …if (exception && (exception->ce == zend_ce_parse_error || exception->ce == zend_ce_compile_error))… in zend_throw_exception_internal()
217 exception = EG(exception); in zend_clear_exception()
717 exception = GET_PROPERTY(exception, ZEND_STR_PREVIOUS); in ZEND_METHOD()
718 if (exception && Z_TYPE_P(exception) == IS_OBJECT && Z_IS_RECURSIVE_P(exception)) { in ZEND_METHOD()
726 …le (exception && Z_TYPE_P(exception) == IS_OBJECT && (base_ce = i_get_exception_base(Z_OBJ_P(excep… in ZEND_METHOD()
732 exception = GET_PROPERTY(exception, ZEND_STR_PREVIOUS); in ZEND_METHOD()
[all …]
/PHP-8.0/ext/standard/tests/general_functions/
H A Dbug32647.phpt21 } catch (TypeError $exception) {
22 echo $exception->getMessage() . "\n";
27 } catch (TypeError $exception) {
28 echo $exception->getMessage() . "\n";
33 } catch (TypeError $exception) {
34 echo $exception->getMessage() . "\n";
39 } catch (TypeError $exception) {
45 } catch (TypeError $exception) {
51 } catch (TypeError $exception) {
59 } catch (TypeError $exception) {
[all …]
/PHP-8.0/ext/sysvshm/tests/
H A D002.phpt15 } catch (ValueError $exception) {
16 echo $exception->getMessage() . "\n";
21 } catch (ValueError $exception) {
22 echo $exception->getMessage() . "\n";
27 } catch (ValueError $exception) {
28 echo $exception->getMessage() . "\n";
33 } catch (ValueError $exception) {
34 echo $exception->getMessage() . "\n";
39 } catch (ValueError $exception) {
40 echo $exception->getMessage() . "\n";
/PHP-8.0/ext/ftp/tests/
H A Dftp_set_option_errors.phpt18 } catch (ValueError $exception) {
19 echo $exception->getMessage() . "\n";
24 } catch (TypeError $exception) {
25 echo $exception->getMessage() . "\n";
30 } catch (TypeError $exception) {
31 echo $exception->getMessage() . "\n";
36 } catch (TypeError $exception) {
37 echo $exception->getMessage() . "\n";
42 } catch (ValueError $exception) {
43 echo $exception->getMessage() . "\n";
/PHP-8.0/Zend/tests/
H A Diterable_or_null.phpt12 } catch (TypeError $exception) {
13 echo $exception->getMessage() . "\n";
18 } catch (TypeError $exception) {
19 echo $exception->getMessage() . "\n";
24 } catch (TypeError $exception) {
25 echo $exception->getMessage() . "\n";
39 } catch (TypeError $exception) {
40 echo $exception->getMessage() . "\n";
H A Dthis_in_isset.phpt9 echo "exception\n";
14 echo "exception\n";
19 echo "exception\n";
36 exception
37 exception
38 exception
H A D010.phpt37 } catch (TypeError $exception) {
38 echo $exception->getMessage() . "\n";
43 } catch (TypeError $exception) {
44 echo $exception->getMessage() . "\n";
49 } catch (TypeError $exception) {
50 echo $exception->getMessage() . "\n";
57 } catch (TypeError $exception) {
58 echo $exception->getMessage() . "\n";
63 } catch (TypeError $exception) {
64 echo $exception->getMessage() . "\n";
/PHP-8.0/ext/session/tests/
H A Dsession_set_save_handler_error4.phpt16 } catch (TypeError $exception) {
17 echo $exception->getMessage() . "\n";
22 } catch (TypeError $exception) {
23 echo $exception->getMessage() . "\n";
28 } catch (TypeError $exception) {
29 echo $exception->getMessage() . "\n";
34 } catch (TypeError $exception) {
35 echo $exception->getMessage() . "\n";
40 } catch (TypeError $exception) {
41 echo $exception->getMessage() . "\n";
[all …]
/PHP-8.0/ext/standard/tests/filters/
H A D001.phpt7 } catch (ValueError $exception) {
8 echo $exception->getMessage() . "\n";
13 } catch (ValueError $exception) {
14 echo $exception->getMessage() . "\n";
19 } catch (ValueError $exception) {
20 echo $exception->getMessage() . "\n";
/PHP-8.0/ext/shmop/tests/
H A D002.phpt19 } catch (ValueError $exception) {
20 echo $exception->getMessage() . "\n";
25 } catch (ValueError $exception) {
26 echo $exception->getMessage() . "\n";
35 } catch (ValueError $exception) {
36 echo $exception->getMessage() . "\n";
42 } catch (ValueError $exception) {
43 echo $exception->getMessage() . "\n";
51 } catch (ValueError $exception) {
60 } catch (ValueError $exception) {
[all …]
/PHP-8.0/ext/standard/tests/file/
H A Dpopen_pclose_error.phpt8 } catch (ValueError $exception) {
9 echo $exception->getMessage() . "\n";
14 } catch (ValueError $exception) {
15 echo $exception->getMessage() . "\n";
20 } catch (ValueError $exception) {
21 echo $exception->getMessage() . "\n";
/PHP-8.0/ext/ldap/tests/
H A Dldap_search_error.phpt26 } catch (ValueError $exception) {
27 echo $exception->getMessage() . "\n";
32 } catch (ValueError $exception) {
33 echo $exception->getMessage() . "\n";
38 } catch (ValueError $exception) {
39 echo $exception->getMessage() . "\n";
44 } catch (TypeError $exception) {
45 echo $exception->getMessage() . "\n";
50 } catch (TypeError $exception) {
51 echo $exception->getMessage() . "\n";
/PHP-8.0/ext/standard/tests/network/
H A Ddns_get_record_error_conditions.phpt8 } catch (\ValueError $exception) {
9 echo $exception->getMessage() . "\n";
16 } catch (\ValueError $exception) {
17 echo $exception->getMessage() . "\n";
24 } catch (\ValueError $exception) {
25 echo $exception->getMessage() . "\n";

Completed in 80 milliseconds

12345678910>>...33