Home
last modified time | relevance | path

Searched refs:exception (Results 426 – 450 of 679) sorted by last modified time

1...<<11121314151617181920>>...28

/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/
H A DLlk.php58 ->exception(function () use ($stream) {
313 ->exception(function () use ($pp) {
/plugin/findologicxmlexport/vendor/hoa/exception/
H A DREADME.md8 …a href="https://travis-ci.org/hoaproject/exception"><img src="https://img.shields.io/travis/hoapro…
9 …/coveralls.io/github/hoaproject/exception?branch=master"><img src="https://img.shields.io/coverall…
10 …href="https://packagist.org/packages/hoa/exception"><img src="https://img.shields.io/packagist/dt/…
37 require [`hoa/exception`](https://packagist.org/packages/hoa/exception):
40 $ composer require hoa/exception '~1.0'
70 An exception is constitued of:
74 * A previous exception (optional).
76 Thus, the following example builds an exception:
96 echo $exception->raise(true);
105 * Nested exception (Hoa\Exception\Exception):
[all …]
H A DGroup.php95 foreach ($this as $exception) {
101 $exception->raise($previous)
149 foreach ($this->_group->pop() as $index => $exception) {
150 $this[$index] = $exception;
206 * @param Exception $exception Exception.
209 public function offsetSet($index, $exception) argument
211 if (!($exception instanceof \Exception)) {
219 $group[] = $exception;
221 $group[$index] = $exception;
H A DIdle.php268 public static function uncaught($exception) argument
270 if (!($exception instanceof self)) {
271 throw $exception;
279 'Uncaught exception (' . get_class($exception) . '):' . "\n" .
280 $exception->raise(true);
308 return set_exception_handler(function ($exception) {
309 return self::uncaught($exception);
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Unit/Filter/
H A DFilter.php85 ->exception(function () use ($name, $class) {
109 ->exception(function () {
122 ->exception(function () {
189 ->exception(function () {
/plugin/findologicxmlexport/vendor/jms/metadata/
H A DCHANGELOG.md25 - metadata name not present leads to exception [\#39](https://github.com/schmittjoh/metadata/issues…
33 - Fix an exception message [\#65](https://github.com/schmittjoh/metadata/pull/65) ([hason](https://…
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DLimit.php77 ->exception(function () use ($iterator) {
90 ->exception(function () use ($limit) {
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Unit/
H A DContext.php56 ->exception(function () {
/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/
H A DUnexpectedValueException.php17 Exception $exception argument
25 $exception
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DREADME.md121 The `Throwable` interface has been introduced to represent a whole new exception
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DAutoloader.php288 ->exception(function () {
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DEvent.php103 ->exception(function () use ($eventId, $source) {
116 ->exception(function () use ($eventId, $source) {
129 ->exception(function () use ($eventId, $source) {
271 ->exception(function () use ($eventId, $source, $data) {
/plugin/findologicxmlexport/vendor/hoa/exception/Test/Unit/
H A DIdle.php64 ->given($exception = new SUT('foo'))
65 ->when($result = $exception->getBacktrace())
116 $exception = new SUT($message)
141 ->given($exception = new SUT('foo'))
142 ->when($result = $exception->getFrom())
152 ->when($result = $exception->raise())
168 ->when($result = $exception->raise(true))
203 ->exception(function () {
214 ->given($exception = new SUT('foo'))
215 ->when($result = $exception->__toString())
[all …]
/plugin/findologicxmlexport/vendor/hoa/math/
H A DCHANGELOG.md25 …* Arithmetic: Throw the “division by zero” exception in all possible cases. (Marc Gratch, 2016-04-…
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/
H A DContext.php72 ->exception(function () use ($context, $name) {
133 ->exception(function () use ($context, $name) {
147 ->exception(function () use ($context, $name) {
212 ->exception(function () use ($context, $name) {
226 ->exception(function () use ($context, $name) {
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/Node/
H A DNode.php122 ->exception(function () use ($root) {
132 ->exception(function () use ($root) {
156 ->exception(function () use ($root) {
230 ->exception(function () use ($node) {
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DCHANGELOG.md31 * Filter: Add an exception & update documentation. (Ivan Enderlin, 2017-02-02T14:46:36+01:00)
/plugin/findologicxmlexport/vendor/hoa/visitor/
H A DCHANGELOG.md36 * Remove the unnecessary exception. (Ivan Enderlin, 2014-11-15T22:10:05+01:00)
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md118 - Base exception should extend Throwable [\#911](https://github.com/schmittjoh/serializer/pull/911)…
572 - check that cache directory was not created before throwing exception [\#729](https://github.com/s…
792 - Type mismatch should throw an exception instead of coercing when deserializing JSON [\#561](https…
1031 - Unsupported format doesn't throw exception anymore [\#8](https://github.com/schmittjoh/serializer…
1041 - Wrong exception message for parsing datetime [\#21](https://github.com/schmittjoh/serializer/pull…
1044 - add check and helpful exception message on inconsistent type situation [\#12](https://github.com/…
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst273 ``\Twig\Error\SyntaxError`` exception. However, it can also call a `callback`_ (any
317 ``tokenize()`` method to get the filename in the exception message::
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dinclude.rst114 of the templates exist, otherwise it will throw an exception.
/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
H A DFilesystemLoader.php174 } catch (LoaderError $exception) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/
H A DCall.php27 private $exception; variable in Prophecy\\Call\\Call
38 * @param Exception $exception
43 Exception $exception = null, $file, $line) argument
48 $this->exception = $exception;
94 return $this->exception;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/
H A DAggregateException.php21 public function append(PredictionException $exception) argument
23 $message = $exception->getMessage();
28 $this->exceptions[] = $exception;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Promise/
H A DThrowPromise.php27 private $exception; variable in Prophecy\\Promise\\ThrowPromise
41 public function __construct($exception) argument
43 if (is_string($exception)) {
44 if (!class_exists($exception) || !$this->isAValidThrowable($exception)) {
47 $exception
50 } elseif (!$exception instanceof \Exception && !$exception instanceof \Throwable) {
53 is_object($exception) ? get_class($exception) : gettype($exception)
57 $this->exception = $exception;
87 throw $this->exception;
91 * @param string $exception
[all …]

1...<<11121314151617181920>>...28