Searched refs:LogicException (Results 1 – 20 of 20) sorted by relevance
/PHP-7.1/ext/spl/ |
H A D | spl_exceptions.c | 55 REGISTER_SPL_SUB_CLASS_EX(LogicException, Exception, NULL, NULL); in PHP_MINIT_FUNCTION() 56 REGISTER_SPL_SUB_CLASS_EX(BadFunctionCallException, LogicException, NULL, NULL); in PHP_MINIT_FUNCTION() 58 REGISTER_SPL_SUB_CLASS_EX(DomainException, LogicException, NULL, NULL); in PHP_MINIT_FUNCTION() 59 REGISTER_SPL_SUB_CLASS_EX(InvalidArgumentException, LogicException, NULL, NULL); in PHP_MINIT_FUNCTION() 60 REGISTER_SPL_SUB_CLASS_EX(LengthException, LogicException, NULL, NULL); in PHP_MINIT_FUNCTION() 61 REGISTER_SPL_SUB_CLASS_EX(OutOfRangeException, LogicException, NULL, NULL); in PHP_MINIT_FUNCTION()
|
H A D | spl.php | 350 class LogicException extends Exception class 358 class BadFunctionCallException extends LogicException 379 class DomainException extends LogicException 389 class InvalidArgumentException extends LogicException 400 class LengthException extends LogicException 412 class OutOfRangeException extends LogicException
|
H A D | php_spl.c | 199 SPL_ADD_CLASS(LogicException, z_list, sub, allow, ce_flags); \
|
/PHP-7.1/ext/spl/tests/ |
H A D | fileobject_003.phpt | 33 } catch (LogicException $e) { 34 echo "LogicException: ".$e->getMessage()."\n"; 39 } catch (LogicException $e) { 40 echo "LogicException: ".$e->getMessage()."\n"; 94 LogicException: Cannot use SplFileObject with directories 95 LogicException: Cannot use SplFileObject with directories 112 LogicException: Cannot use SplFileObject with directories 113 LogicException: Cannot use SplFileObject with directories
|
H A D | bug55701.phpt | 18 } catch (LogicException $e) { 19 // Throwing a LogicException is not correct 20 echo "threw LogicException (unexpected)\n"; 30 } catch (LogicException $e) { 31 echo "threw LogicException (expected)\n"; 40 // It must not throw LogicException when the iterator is not valid 76 // However, they must not throw LogicException 235 // Supplemental test: no method should throw LogicException if it is invoked 332 extends GlobIterator... threw LogicException (expected) 333 extends SplFileObject... threw LogicException (expected) [all …]
|
H A D | spl_autoload_008.phpt | 83 LogicException: Function 'MyAutoLoader::dynaLoad' not callable (non-static method MyAutoLoader::dyn… 103 LogicException: Passed array specifies a non static method but no object (non-static method MyAutoL…
|
H A D | SplFileObject_seek_error_001.phpt | 10 } catch (LogicException $e) {
|
H A D | bug54281.phpt | 15 Fatal error: Uncaught LogicException: The object is in an invalid state as the parent constructor w…
|
H A D | SplFileObject_ftruncate_error_001.phpt | 27 } catch (LogicException $e) {
|
H A D | iterator_031.phpt | 59 catch(LogicException $e)
|
H A D | bug54384.phpt | 10 } catch (LogicException $e) {
|
/PHP-7.1/scripts/dev/generate-phpt/src/ |
H A D | gtCodeSnippet.php | 21 throw new LogicException('The code snippet ' . $name . ' does not exist'); 43 throw new LogicException('The code snippet ' . $name . ' does not exist');
|
H A D | gtText.php | 20 throw new LogicException('The text ' . $name . ' does not exist');
|
/PHP-7.1/Zend/tests/generators/ |
H A D | throw_rethrow.phpt | 13 throw new LogicException('new throw'); 28 Fatal error: Uncaught LogicException: new throw in %s:%d
|
/PHP-7.1/ext/phar/tests/ |
H A D | phar_oo_001.phpt | 33 catch (LogicException $e) 40 } catch (LogicException $e)
|
/PHP-7.1/Zend/tests/ |
H A D | methods-on-non-objects-nested.inc | 3 throw new LogicException('Should not be called');
|
/PHP-7.1/ext/spl/internal/ |
H A D | multipleiterator.inc | 196 * @throws LogicException if mode MIT_NEED_ALL is set and at least one 214 throw new LogicException('Called key() with non valid sub iterator');
|
/PHP-7.1/sapi/fpm/tests/ |
H A D | logtool.inc | 82 throw new \LogicException('The message has not been set'); 123 throw new \LogicException('The message has not been set');
|
/PHP-7.1/scripts/dev/ |
H A D | generate-phpt.phar | 191 throw new LogicException('The text ' . $name . ' does not exist'); 301 throw new LogicException('The code snippet ' . $name . ' does not exist'); 323 throw new LogicException('The code snippet ' . $name . ' does not exist');
|
/PHP-7.1/ |
H A D | NEWS | 2042 . Fixed bug #55701 (GlobIterator throws LogicException). (Valentin VĂLCIU) 2601 . Fixed bug #55701 (GlobIterator throws LogicException). (Valentin VĂLCIU)
|
Completed in 48 milliseconds