Searched refs:RuntimeException (Results 1 – 25 of 44) sorted by relevance
12
/PHP-7.3/ext/spl/ |
H A D | spl_exceptions.c | 61 REGISTER_SPL_SUB_CLASS_EX(RuntimeException, Exception, NULL, NULL); in PHP_MINIT_FUNCTION() 62 REGISTER_SPL_SUB_CLASS_EX(OutOfBoundsException, RuntimeException, NULL, NULL); in PHP_MINIT_FUNCTION() 63 REGISTER_SPL_SUB_CLASS_EX(OverflowException, RuntimeException, NULL, NULL); in PHP_MINIT_FUNCTION() 64 REGISTER_SPL_SUB_CLASS_EX(RangeException, RuntimeException, NULL, NULL); in PHP_MINIT_FUNCTION() 65 REGISTER_SPL_SUB_CLASS_EX(UnderflowException, RuntimeException, NULL, NULL); in PHP_MINIT_FUNCTION() 66 REGISTER_SPL_SUB_CLASS_EX(UnexpectedValueException, RuntimeException, NULL, NULL); in PHP_MINIT_FUNCTION()
|
H A D | spl.php | 420 class RuntimeException extends Exception class 432 class OutOfBoundsException extends RuntimeException 440 class OverflowException extends RuntimeException 453 class RangeException extends RuntimeException 461 class UnderflowException extends RuntimeException 475 class UnexpectedValueException extends RuntimeException 962 * @throw RuntimeException if file cannot be opened (e.g. insufficient
|
/PHP-7.3/Zend/tests/generators/ |
H A D | throw_rethrow.phpt | 10 } catch (RuntimeException $e) { 18 var_dump($gen->throw(new RuntimeException('throw'))); 23 Caught: RuntimeException: throw in %s:%d 31 #1 %s(%d): Generator->throw(Object(RuntimeException))
|
H A D | throw_caught.phpt | 10 } catch (RuntimeException $e) { 18 var_dump($gen->throw(new RuntimeException('Test'))); 23 RuntimeException: Test in %s:%d
|
H A D | throw_uncaught.phpt | 12 var_dump($gen->throw(new RuntimeException('test'))); 16 Fatal error: Uncaught RuntimeException: test in %s:%d
|
/PHP-7.3/ext/spl/tests/ |
H A D | fixedarray_001.phpt | 9 } catch (RuntimeException $e) { 14 } catch (RuntimeException $e) { 19 } catch (RuntimeException $e) {
|
H A D | multiple_iterator_001.phpt | 31 } catch(RuntimeException $e) { 32 echo "RuntimeException thrown: " . $e->getMessage() . "\n"; 36 } catch(RuntimeException $e) { 37 echo "RuntimeException thrown: " . $e->getMessage() . "\n"; 144 RuntimeException thrown: Called current() with non valid sub iterator 145 RuntimeException thrown: Called key() with non valid sub iterator
|
H A D | dllist_004.phpt | 9 } catch (RuntimeException $e) { 14 } catch (RuntimeException $e) {
|
H A D | dllist_005.phpt | 9 } catch (RuntimeException $e) { 14 } catch (RuntimeException $e) {
|
H A D | fixedarray_002.phpt | 36 } catch (RuntimeException $e) { 41 } catch (RuntimeException $e) { 46 } catch (RuntimeException $e) {
|
H A D | dllist_001.phpt | 9 } catch (RuntimeException $e) { 14 } catch (RuntimeException $e) {
|
H A D | SplDoublyLinkedList_bottom_empty.phpt | 9 } catch (RuntimeException $e) {
|
H A D | SplDoublyLinkedList_top_empty.phpt | 9 } catch (RuntimeException $e) {
|
H A D | spl_pq_top_error_empty.phpt | 13 } catch (RuntimeException $e) {
|
H A D | DirectoryIterator_empty_constructor.phpt | 11 Fatal error: Uncaught RuntimeException: Directory name must not be empty. in %s:%d
|
H A D | DirectoryIterator_by_reference.phpt | 14 Fatal error: Uncaught RuntimeException: An iterator cannot be used with foreach by reference in %s:…
|
H A D | iterator_069.phpt | 17 Fatal error: Uncaught RuntimeException: An iterator cannot be used with foreach by reference in %s:…
|
H A D | spl_pq_top_error_corrupt.phpt | 32 } catch (RuntimeException $e) {
|
H A D | heap_002.phpt | 10 } catch (RuntimeException $e) {
|
/PHP-7.3/Zend/tests/try/ |
H A D | bug74444.phpt | 67 throw new \RuntimeException(); 68 } catch (\FooEx | \RuntimeException $e) {
|
/PHP-7.3/Zend/tests/ |
H A D | bug45805.phpt | 9 throw new RuntimeException; 39 Fatal error: Uncaught RuntimeException in %sbug45805.php:%d
|
H A D | bug71275.phpt | 8 throw new RuntimeException('Should not be called');
|
/PHP-7.3/ext/spl/internal/ |
H A D | splstack.inc | 36 * @throw RuntimeException If the new mode affects the iteration's direction. 41 … throw new RuntimeException("Iterators' LIFO/FIFO modes for SplStack/SplQueue objects are frozen");
|
H A D | splqueue.inc | 40 * @throw RuntimeException If the new mode affects the iteration's direction. 45 … throw new RuntimeException("Iterators' LIFO/FIFO modes for SplStack/SplQueue objects are frozen");
|
/PHP-7.3/ext/pdo_pgsql/tests/ |
H A D | bug72294.phpt | 20 throw new RuntimeException( $errstr, $errno ); 82 } catch (RuntimeException $e) {
|
Completed in 66 milliseconds
12