/PHP-8.1/ext/com_dotnet/tests/ |
H A D | variants.phpt | 78 exception Type mismatch 84 exception Type mismatch 89 exception Type mismatch 94 exception Type mismatch 99 exception Type mismatch 104 exception Type mismatch 109 exception Type mismatch 114 exception Type mismatch 119 exception Type mismatch 124 exception Type mismatch [all …]
|
H A D | variants_x64.phpt | 81 exception Type mismatch 87 exception Type mismatch 92 exception Type mismatch 97 exception Type mismatch 102 exception Type mismatch 107 exception Type mismatch 112 exception Type mismatch 117 exception Type mismatch 122 exception Type mismatch 127 exception Type mismatch [all …]
|
/PHP-8.1/ext/gettext/tests/ |
H A D | 44938.phpt | 14 } catch (ValueError $exception) { 20 } catch (ValueError $exception) { 26 } catch (ValueError $exception) { 32 } catch (ValueError $exception) { 38 } catch (ValueError $exception) { 44 } catch (ValueError $exception) { 50 } catch (ValueError $exception) { 56 } catch (ValueError $exception) { 62 } catch (ValueError $exception) { 68 } catch (ValueError $exception) { [all …]
|
/PHP-8.1/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.1/ext/snmp/tests/ |
H A D | snmp-object-properties-error.phpt | 17 } catch (Error $exception) { 18 echo $exception->getMessage() . "\n"; 23 } catch (Error $exception) { 29 } catch (TypeError $exception) { 35 } catch (ValueError $exception) { 41 } catch (TypeError $exception) { 47 } catch (TypeError $exception) { 53 } catch (TypeError $exception) { 59 } catch (TypeError $exception) { 65 } catch (TypeError $exception) { [all …]
|
/PHP-8.1/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.1/ext/zip/tests/ |
H A D | oo_readonly_properties.phpt | 12 } catch (Error $exception) { 13 echo $exception->getMessage() . "\n"; 18 } catch (Error $exception) { 19 echo $exception->getMessage() . "\n"; 26 } catch (Error $exception) { 27 echo $exception->getMessage() . "\n"; 34 } catch (Error $exception) { 35 echo $exception->getMessage() . "\n"; 42 } catch (Error $exception) { 50 } catch (Error $exception) { [all …]
|
/PHP-8.1/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 | 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 | 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";
|
/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_class_mysqli_properties_no_conn.phpt | 21 } catch (Error $exception) { 39 } catch (Error $exception) { 45 } catch (Error $exception) { 55 } catch (Error $exception) { 61 } catch (Error $exception) { 67 } catch (Error $exception) { 73 } catch (Error $exception) { 79 } catch (Error $exception) { 85 } catch (Error $exception) { 91 } catch (Error $exception) { [all …]
|
/PHP-8.1/ext/dom/tests/ |
H A D | property_write_errors.phpt | 13 } catch (TypeError $exception) { 14 echo $exception->getMessage() . "\n"; 19 } catch (Error $exception) { 20 echo $exception->getMessage() . "\n"; 25 } catch (Error $exception) { 26 echo $exception->getMessage() . "\n"; 33 } catch (Error $exception) { 34 echo $exception->getMessage() . "\n"; 39 } catch (Error $exception) { 40 echo $exception->getMessage() . "\n"; [all …]
|
/PHP-8.1/Zend/tests/fibers/ |
H A D | unfinished-fiber-with-throw-in-finally.phpt | 13 } catch (Throwable $exception) { 14 echo "inner exit exception caught!\n"; 16 } catch (Throwable $exception) { 17 echo "exit exception caught!\n"; 20 throw new \Exception("finally exception"); 22 } catch (Exception $exception) { 23 echo $exception->getMessage(), "\n"; 30 } catch (FiberError $exception) { 31 echo $exception->getMessage(), "\n"; 45 finally exception
|
/PHP-8.1/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.1/Zend/ |
H A D | zend_exceptions.c | 137 if (EG(exception)) { in zend_exception_save() 140 EG(exception) = NULL; in zend_exception_save() 185 zend_exception_set_previous(exception, EG(exception)); in zend_throw_exception_internal() 186 EG(exception) = exception; in zend_throw_exception_internal() 193 …if (exception && (exception->ce == zend_ce_parse_error || exception->ce == zend_ce_compile_error))… in zend_throw_exception_internal() 227 exception = EG(exception); in zend_clear_exception() 720 exception = GET_PROPERTY(exception, ZEND_STR_PREVIOUS); in ZEND_METHOD() 721 if (exception && Z_TYPE_P(exception) == IS_OBJECT && Z_IS_RECURSIVE_P(exception)) { in ZEND_METHOD() 729 …le (exception && Z_TYPE_P(exception) == IS_OBJECT && (base_ce = i_get_exception_base(Z_OBJ_P(excep… in ZEND_METHOD() 735 exception = GET_PROPERTY(exception, ZEND_STR_PREVIOUS); in ZEND_METHOD() [all …]
|
/PHP-8.1/ext/session/tests/ |
H A D | sessionhandler_open_001.phpt | 15 } catch (Error $exception) { 16 echo $exception->getMessage() . "\n"; 21 } catch (Error $exception) { 22 echo $exception->getMessage() . "\n"; 27 } catch (Error $exception) { 28 echo $exception->getMessage() . "\n"; 33 } catch (Error $exception) { 34 echo $exception->getMessage() . "\n";
|
H A D | session_set_save_handler_error4.phpt | 18 } catch (TypeError $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 (TypeError $exception) { 43 echo $exception->getMessage() . "\n"; [all …]
|
/PHP-8.1/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.1/ext/sysvshm/tests/ |
H A D | 002.phpt | 17 } catch (ValueError $exception) { 18 echo $exception->getMessage() . "\n"; 23 } catch (ValueError $exception) { 24 echo $exception->getMessage() . "\n"; 29 } catch (ValueError $exception) { 30 echo $exception->getMessage() . "\n"; 35 } catch (ValueError $exception) { 36 echo $exception->getMessage() . "\n"; 41 } catch (ValueError $exception) { 42 echo $exception->getMessage() . "\n";
|
/PHP-8.1/Zend/tests/ |
H A D | iterable_or_null.phpt | 10 } catch (TypeError $exception) { 11 echo $exception->getMessage() . "\n"; 16 } catch (TypeError $exception) { 17 echo $exception->getMessage() . "\n"; 22 } catch (TypeError $exception) { 23 echo $exception->getMessage() . "\n"; 37 } catch (TypeError $exception) { 38 echo $exception->getMessage() . "\n";
|
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";
|
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
|
/PHP-8.1/ext/shmop/tests/ |
H A D | 002.phpt | 15 } catch (ValueError $exception) { 16 echo $exception->getMessage() . "\n"; 21 } catch (ValueError $exception) { 22 echo $exception->getMessage() . "\n"; 31 } catch (ValueError $exception) { 32 echo $exception->getMessage() . "\n"; 38 } catch (ValueError $exception) { 39 echo $exception->getMessage() . "\n"; 47 } catch (ValueError $exception) { 56 } catch (ValueError $exception) { [all …]
|
/PHP-8.1/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";
|