/PHP-7.3/Zend/tests/generators/ |
H A D | throw_rethrow.phpt | 2 Generator::throw() where the generator throws a different exception 13 throw new LogicException('new throw'); 18 var_dump($gen->throw(new RuntimeException('throw'))); 23 Caught: RuntimeException: throw in %s:%d 28 Fatal error: Uncaught LogicException: new throw in %s:%d 31 #1 %s(%d): Generator->throw(Object(RuntimeException))
|
H A D | get_return_errors.phpt | 21 throw new Exception("gen2() throw"); 40 throw new Exception("gen3() throw"); 60 $gen->throw(new Exception("gen4() throw")); 66 // that was injected using throw() 75 gen2() throw 77 gen3() throw 78 gen4() throw
|
H A D | get_return_and_finally.phpt | 8 throw new Exception("gen1() throw"); 23 throw new Exception("gen2() throw"); 30 // This will throw an exception (from the finally) 46 gen2() throw
|
H A D | throw_not_an_exception.phpt | 2 Generator::throw() with something that's not an exception 11 $gen->throw(new stdClass); 15 Fatal error: Uncaught Error: Cannot throw objects that do not implement Throwable in %s:%d 18 #1 %s(%d): Generator->throw(Object(stdClass))
|
/PHP-7.3/Zend/tests/ |
H A D | exception_001.phpt | 10 throw new Exception(NULL); 13 throw $e; 17 throw $e; 21 throw $e; 25 throw $e;
|
H A D | temporary_cleaning_013.phpt | 9 function __destruct() { throw new Exception; } 15 function __destruct() { throw new Exception; } 22 function __destruct() { throw new Exception; } 29 function __destruct() { throw new Exception; } 39 function __destruct() { throw new Exception; } 49 function __destruct() { throw new Exception; } 61 function __destruct() { throw new Exception; } 74 function __destruct() { throw new Exception; } 81 function __destruct() { throw new Exception; } 89 function __destruct() { throw new Exception; } [all …]
|
H A D | bug65784.phpt | 7 throw new Exception("not catch"); 11 throw new Exception("catched"); 28 throw new Exception("catched"); 32 throw new Exception("catched"); 45 throw new Exception("not catched"); 49 throw new NotExists();
|
H A D | bug33318.phpt | 2 Bug #33318 (throw 1; results in Invalid opcode 108/1/8) 5 throw 1; 8 Fatal error: Uncaught Error: Can only throw objects in %sbug33318.php:2
|
H A D | exception_006.phpt | 2 Trying to throw a non-object 6 throw 1; 10 Fatal error: Uncaught Error: Can only throw objects in %s:%d
|
H A D | exception_set_previous_leak.phpt | 8 throw new Exception("Test"); 10 throw $e; 12 throw $e;
|
H A D | bug70944.phpt | 8 throw new Exception("Bar", 0, $e); 10 throw $e; 19 throw new Exception("Bar", 0, $e); 21 throw new Exception("Dummy", 0, $e);
|
H A D | ErrorException_getSeverity.phpt | 16 throw new ErrorException(); 28 throw new ErrorException(EXCEPTION_PARAM_MSG); 40 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR); 52 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_ERROR); 64 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_WARNING); 76 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_PARSE); 88 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_NOTICE); 100 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR); 160 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_USER_ERROR); 196 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_STRICT); [all …]
|
H A D | bug60909_2.phpt | 6 set_error_handler(function($errno, $errstr, $errfile, $errline){throw new Exception("Foo");}); 10 throw new Exception('Oops, I cannot do this'); 17 Fatal error: Method Bad::__toString() must not throw an exception, caught Exception: Oops, I cannot…
|
H A D | bug73338.phpt | 6 try { call_user_func(new class { function __destruct () { throw new Error; } }); } catch (Error $e)… 8 set_error_handler(function() { throw new Error; }); 14 try { [new class { static function foo() {} function __destruct () { throw new Error; } }, "foo"]()…
|
H A D | exception_007.phpt | 8 throw new Exception("First", 1, new Exception("Another", 0, NULL)); 11 throw new Exception("Second", 2, $e); 15 throw new Exception("Third", 3, $e);
|
/PHP-7.3/tests/classes/ |
H A D | iterators_007.phpt | 10 …public function rewind() { if ($this->x == 0) throw new Exception(__METHOD__); reset($this->arr… 11 …public function current() { if ($this->x == 1) throw new Exception(__METHOD__); return current($… 12 …public function key() { if ($this->x == 2) throw new Exception(__METHOD__); return key($this… 13 …public function next() { if ($this->x == 3) throw new Exception(__METHOD__); next($this->arr)… 14 …public function valid() { if ($this->x == 4) throw new Exception(__METHOD__); return (key($thi…
|
H A D | array_access_013.phpt | 8 … public function offsetExists($offset) { throw new Exception(__METHOD__); return false; } 9 … public function offsetGet($offset) { throw new Exception(__METHOD__); return $offset; } 10 public function offsetSet($offset, $data ) { throw new Exception(__METHOD__); } 11 public function offsetUnset($offset) { throw new Exception(__METHOD__); }
|
/PHP-7.3/Zend/tests/try/ |
H A D | try_finally_002.phpt | 2 Try finally (re-throw exception in finally block) 7 throw new Exception("try"); 9 throw new Exception("finally");
|
H A D | catch_finally_001.phpt | 5 function foo ($throw = FALSE) { 8 if ($throw) { 9 throw new Exception("ex");
|
H A D | catch_finally_006.phpt | 2 Try catch finally (re-throw exception in catch block) 7 throw new Exception("ex"); 10 throw $e;
|
H A D | try_finally_026.phpt | 8 throw new Exception(1); 11 throw new Exception(2); 15 throw new Exception(3);
|
H A D | try_finally_027.phpt | 2 Return in try with throw in finally, inside other finally 8 throw new Exception(1); 13 throw new Exception(2);
|
H A D | try_finally_024.phpt | 8 throw new Exception(1); 13 throw new Exception(2); 18 throw new Exception(3);
|
/PHP-7.3/Zend/tests/arg_unpack/ |
H A D | traversable_throwing_exception.phpt | 2 Traversables that throw exceptions are properly handled during argument unpack 12 throw new Exception('getIterator'); 19 throw new Exception('gen');
|
/PHP-7.3/ext/spl/internal/ |
H A D | emptyiterator.inc | 36 * @throw Exception 41 throw new Exception('Accessing the value of an EmptyIterator'); 45 * @throw Exception 50 throw new Exception('Accessing the key of an EmptyIterator');
|