Lines Matching refs:LogicException
2 Bug #55701 (GlobIterator throws LogicException with message 'The parent constructor was not called')
18 } catch (LogicException $e) {
19 // Throwing a LogicException is not correct
20 echo "threw LogicException (unexpected)\n";
25 // The derived classes must throw LogicException if the parent class constructor was not called
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
269 // the LogicException is thrown (don't break the behaviour introduced to fix bug #54384)
332 extends GlobIterator... threw LogicException (expected)
333 extends SplFileObject... threw LogicException (expected)
334 extends SplTempFileObject... threw LogicException (expected)