/PHP-8.0/ext/com_dotnet/tests/ |
H A D | variants.phpt | 77 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 D | variants_x64.phpt | 80 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 D | 44938.phpt | 17 } 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 D | mail_basic7.phpt | 47 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 D | error_2_exception_001.phpt | 31 } 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 D | 035.phpt | 18 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 D | bug40754.phpt | 15 } 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 D | strripos_offset.phpt | 14 } 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 D | strrpos_offset.phpt | 14 } 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 D | substr_count_error.phpt | 12 } 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 D | password_hash_error_argon2.phpt | 13 } 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 D | mysqli_class_mysqli_properties_no_conn.phpt | 20 } 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 D | zend_exceptions.c | 127 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 D | bug32647.phpt | 21 } 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 D | 002.phpt | 15 } 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 D | ftp_set_option_errors.phpt | 18 } 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 D | iterable_or_null.phpt | 12 } 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 D | this_in_isset.phpt | 9 echo "exception\n"; 14 echo "exception\n"; 19 echo "exception\n"; 36 exception 37 exception 38 exception
|
H A D | 010.phpt | 37 } 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 D | session_set_save_handler_error4.phpt | 16 } 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 D | 001.phpt | 7 } 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 D | 002.phpt | 19 } 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 D | popen_pclose_error.phpt | 8 } 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 D | ldap_search_error.phpt | 26 } 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 D | dns_get_record_error_conditions.phpt | 8 } 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";
|