Home
last modified time | relevance | path

Searched refs:exception (Results 101 – 125 of 679) sorted by relevance

12345678910>>...28

/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DXcallable.php216 ->exception(function () {
225 ->exception(function () {
235 ->exception(function () {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md90 * Enhance exception for invalid argument to ThrowPromise (thanks @Tobion)
109 * Improved clarity of method call expectation exception (thanks @dantleech)
162 …* Added an exception when trying to prophesize on a final method instead of ignoring silently (tha…
201 * Improve exception messages
206 * Add more debug information to CallTimes and Call prediction exception messages
208 * Fix some typos in the exception messages (thanks @pborreli)
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestCase.php512 * @param mixed $exception
530 $this->expectedException = $exception;
542 * @param mixed $exception
556 $this->expectedException = $exception;
565 * @param string $exception
567 public function expectException($exception) argument
569 if (!is_string($exception)) {
573 $this->expectedException = $exception;
1936 * @param Throwable|Exception $exception
1942 public static function throwException($exception) argument
[all …]
/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/
H A DInstantiator.php163 } catch (Exception $exception) {
164 … throw UnexpectedValueException::fromSerializationTriggeredException($reflectionClass, $exception);
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md145 If an exception is thrown in an `$onRejected` callback, subsequent
146 `$onRejected` callbacks are invoked with the thrown exception as the reason.
179 If an exception is not thrown in a `$onRejected` callback and the callback
204 wait function does not deliver a value, then an exception is thrown. The wait
217 If an exception is encountered while invoking the wait function of a promise,
218 the promise is rejected with the exception and the exception is thrown.
225 $promise->wait(); // throws the exception.
237 Calling `wait` on a promise that has been rejected will throw an exception. If
240 can be obtained by calling the `getReason` method of the exception.
265 // This will not throw an exception. It simply ensures the promise has
[all …]
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md202 the thrown exception if either throws.
292 rejected promise, `$newPromise` will reject with the thrown exception or
297 rejected promise, `$newPromise` will reject with the thrown exception or
385 // Reject promise by throwing an exception
401 just throw an exception instead of using `$reject()`.
404 If the resolver or canceller throw an exception, the promise will be rejected
405 with that thrown exception as the rejection reason.
505 throwing an exception. For example, it allows you to propagate a rejection with
679 When you catch an exception, you must rethrow for it to propagate.
747 If your progress handler throws an exception, th
[all...]
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/
H A DLlk.php58 ->exception(function () use ($stream) {
313 ->exception(function () use ($pp) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php100 $exception = false;
108 $exception = true;
115 $exception = true;
120 if ($exception) {
/plugin/dw2pdf/vendor/mpdf/mpdf/ttfonts/
H A DGNUFreeFontinfo.txt78 As a special exception, if you create a document which uses this font, and
81 GNU General Public License. This exception does not however invalidate any
83 License. If you modify this font, you may extend this exception to your
85 wish to do so, delete this exception statement from your version.
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DPropertyTypeMatcher.php38 } catch (ReflectionException $exception) {
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DPropertyTypeMatcher.php38 } catch (ReflectionException $exception) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DGenerator.php307 } catch (InstantiatorUnexpectedValueException $exception) {
308 if ($exception->getPrevious()) {
309 $exception = $exception->getPrevious();
313 $exception->getMessage()
315 } catch (InstantiatorInvalidArgumentException $exception) {
317 $exception->getMessage()
/plugin/bez/mdl/
H A DTaskFactory.php169 } catch(Exception $exception) {
199 } catch(Exception $exception) {
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DCounter.php75 ->exception(function () {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D873-php5.phpt20 Fatal error: Uncaught exception 'Exception' with message 'PHPUnit suppresses exceptions thrown outs…
H A D765.phpt2 GH-765: Fatal error triggered in PHPUnit when exception is thrown in data provider of a test with a…
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DCHANGELOG.md27 * Llk: Update exception messages. (Ivan Enderlin, 2016-08-14T18:00:02+02:00)
41 * Analyzer: More detailed exception messages. (Ivan Enderlin, 2016-08-14T16:27:01+02:00)
43 * Rule: Fix an exception message in the analyzer. (Ivan Enderlin, 2016-08-12T18:04:39+02:00)
72 * Documentation: Update API and exception message. (Ivan Enderlin, 2016-07-15T19:36:40+02:00)
107 * Fix Llk\Llk::parsePP unrecognized instructions exception (lovenunu, 2015-12-14T16:48:09+01:00)
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/
H A DFunctionCommentSniff.php179 $exception = null;
184 $exception = $matches[1];
190 if ($exception === null) {
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DScreenRecorder.java284 private Exception exception; field in ScreenRecorder.SafeThread
295 this.exception = e; in run()
303 return exception; in getException()
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DListener.php100 ->exception(function () use ($listener, $listenerId, $callable) {
235 ->exception(function () use ($listener) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/
H A DMethodProphecy.php210 public function willThrow($exception) argument
212 return $this->will(new Promise\ThrowPromise($exception));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/Trac/
H A D578.phpt32 Exception: Double printed exception
/plugin/struct/helper/
H A Ddb.php54 } catch (\Exception $exception) {
55 ErrorHandler::logException($exception);
56 if ($throw) throw $exception;
102 } catch (\JsonException $exception) {
/plugin/openlayersmap/
H A DStaticMap.php301 } catch (exception $e) {
308 } catch (exception $e) {
315 } catch (exception $e) {
614 * @throws exception when loading the KML fails
761 * @throws exception when loading the GPX fails
772 * @throws exception when loading the JSON fails
/plugin/combo/
H A Dcli.php238 } catch (\Exception $exception) {
239 fwrite(STDERR, "An internal error has occured. " . $exception->getMessage() . "\n" . $exception->getTraceAsString());

12345678910>>...28