Home
last modified time | relevance | path

Searched refs:RuntimeException (Results 1 – 25 of 594) sorted by relevance

12345678910>>...24

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DStream.php92 throw new \RuntimeException('Stream is detached');
98 throw new \RuntimeException('Unable to read stream contents');
170 throw new \RuntimeException('Stream is detached');
179 throw new \RuntimeException('Stream is detached');
201 throw new \RuntimeException('Stream is detached');
204 throw new \RuntimeException('Stream is not seekable');
207 throw new \RuntimeException('Unable to seek to stream position '
215 throw new \RuntimeException('Stream is detached');
230 throw new \RuntimeException('Unable to read from stream');
239 throw new \RuntimeException('Stream is detached');
[all …]
H A DUploadedFile.php8 use RuntimeException; alias
216 * @throws RuntimeException if is moved or not ok
221 throw new RuntimeException('Cannot retrieve stream due to upload error');
225 throw new RuntimeException('Cannot retrieve stream after it has already been moved');
232 * @throws RuntimeException if the upload was not successful.
253 * @throws RuntimeException if the upload was not successful.
255 * @throws RuntimeException on any error during the move operation, or on
282 throw new RuntimeException(
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DJsonDeserializationVisitor.php9 use JMS\Serializer\Exception\RuntimeException; alias
90 …throw new RuntimeException(sprintf('Expected array, but got %s: %s', \gettype($data), json_encode(…
122 …throw new RuntimeException(sprintf('Array type cannot have more than 2 parameters, but got %s.', j…
167 throw new RuntimeException(sprintf(
181 …throw new RuntimeException(sprintf('You must define a type for %s::$%s.', $metadata->class, $metad…
234 throw new RuntimeException('Could not decode JSON, maximum stack depth exceeded.');
237 … throw new RuntimeException('Could not decode JSON, underflow or the nodes mismatch.');
240 … throw new RuntimeException('Could not decode JSON, unexpected control character found.');
243 throw new RuntimeException('Could not decode JSON, syntax error - malformed JSON.');
246 …throw new RuntimeException('Could not decode JSON, malformed UTF-8 characters (incorrectly encoded…
[all …]
/plugin/jplayer/vendor/symfony/process/
H A DProcess.php18 use Symfony\Component\Process\Exception\RuntimeException; alias
142 * @throws RuntimeException When proc_open is not installed
200 * @throws RuntimeException When process can't be launched
256 * @throws RuntimeException When process can't be launched
257 * @throws RuntimeException When process is already running
263 throw new RuntimeException('Process is already running.');
368 * @throws RuntimeException When process can't be launched
369 * @throws RuntimeException When process is already running
399 * @throws RuntimeException When process timed out
454 * @throws RuntimeException In case of failure
[all …]
/plugin/dx/src/
H A DStandardize.php8 use RuntimeException; alias
51 …throw new RuntimeException("Plugin \"$pluginName\" does not exist in expected location \"$pluginDi…
60 … throw new RuntimeException($pluginDir . ' has uncommited git changes or untracked files!');
71 throw new RuntimeException($targetFilePath . ' is not writable!');
92 throw new RuntimeException($targetFilePath . ' is not writable!');
105 throw new RuntimeException(sprintf('Directory "%s" was not created', $dirPath));
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Cache/
H A DConfigCache.php57 throw new \RuntimeException('Unable to create directory '.$dir);
63 throw new \RuntimeException('Unable to write file '.$path);
80 throw new \RuntimeException('There is no cached value for '.$resource);
98 throw new \RuntimeException('There is no cached value for '.$resource);
103 throw new \RuntimeException('Unable to determine file mtime for '.$path);
H A DFilesystemCache.php38 throw new \RuntimeException('There is no cached value for '.$key);
47 throw new \RuntimeException('Unable to create directory '.$this->dir);
53 throw new \RuntimeException('Unable to write file '.$path);
62 throw new \RuntimeException('Unable to remove file '.$path);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DPKCS1.php75 throw new \RuntimeException('Unable to decode BER');
80 throw new \RuntimeException('Unable to perform ASN1 mapping');
91 throw new \RuntimeException('Unable to decode BER');
95 throw new \RuntimeException('Unable to perform ASN1 mapping');
102 throw new \RuntimeException('EC PARAMETERS does not correspond to EC PRIVATE KEY');
122 throw new \RuntimeException('Unable to decode BER');
132 throw new \RuntimeException('Unable to perform ASN1 mapping');
135 throw new \RuntimeException('Key cannot be loaded without parameters');
H A Dlibsodium.php65 …throw new \RuntimeException('Keys with 96 bytes should have the 2nd and 3rd set of 32 bytes match'…
70 …throw new \RuntimeException('libsodium keys need to either be 32 bytes long, 64 bytes long or 96 b…
111 throw new \RuntimeException('Private Key does not have a secret set');
114 throw new \RuntimeException('Private Key secret is not of the correct length');
/plugin/combo/vendor/symfony/process/
H A DProcess.php19 use Symfony\Component\Process\Exception\RuntimeException; alias
242 * @throws RuntimeException When process can't be launched
243 * @throws RuntimeException When process is already running
293 * @throws RuntimeException When process can't be launched
294 * @throws RuntimeException When process is already running
300 throw new RuntimeException('Process is already running.');
349 throw new RuntimeException(sprintf('The provided cwd "%s" does not exist.', $this->cwd));
355 throw new RuntimeException('Unable to launch a new process.');
381 * @throws RuntimeException When process can't be launched
382 * @throws RuntimeException Whe
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DOpenSSH.php85 throw new \RuntimeException('Expected openssh-key-v1');
92 …throw new \RuntimeException('Although the OpenSSH private key format supports multiple keys phpsec…
121 throw new \RuntimeException('Encrypted OpenSSH private keys are not supported');
130 throw new \RuntimeException('The two checkints do not match');
155 …throw new \RuntimeException('Two different types of keys are claimed: ' . $asciiType . ' and ' . $…
189 …throw new \RuntimeException("The key type ($candidate) is not equal to: " . implode(',', static::$…
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/ServerRunner/
H A DPcntlServerRunner.php15 use FreeDSx\Ldap\Exception\RuntimeException;
92 * @throws RuntimeException
97 throw new RuntimeException('The PCNTL extension is needed to fork incoming requests, which is only available on Linux.');
13 use FreeDSx\Ldap\Exception\RuntimeException; global() alias
/plugin/elasticsearch/helper/
H A Ddocparser.php48 throw new RuntimeException(
77 throw new RuntimeException('File ' . $file . 'does not exist');
81 throw new RuntimeException('Cannot parse file with unidentified extension');
84 throw new RuntimeException('No parser configured for files of type ' . $ext);
89 throw new RuntimeException('No response from parser');
/plugin/findologicxmlexport/vendor/jms/serializer/src/Annotation/
H A DExclusionPolicy.php7 use JMS\Serializer\Exception\RuntimeException; alias
26 throw new RuntimeException('"value" must be a string.');
32 throw new RuntimeException('Exclusion policy must either be "ALL", or "NONE".');
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapServer.php14 use FreeDSx\Ldap\Exception\RuntimeException;
67 * @throws RuntimeException
13 use FreeDSx\Ldap\Exception\RuntimeException; global() alias
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php171 throw new \RuntimeException('Unexpected null input stream.');
247 throw new \RuntimeException('Unexpected null interpreter.');
261 throw new \RuntimeException('Unexpected null input stream.');
332 throw new \RuntimeException('Unexpected null start token.');
361 throw new \RuntimeException('Unexpected null expected tokens.');
564 throw new \RuntimeException('Unexpected null input stream.');
570 throw new \RuntimeException('Unexpected null interpreter.');
619 throw new \RuntimeException('Unexpected null input stream.');
662 throw new \RuntimeException('Unexpected null current token.');
668 throw new \RuntimeException('Unexpecte
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DDelete.php19 use Elasticsearch\Common\Exceptions\RuntimeException; alias
35 throw new RuntimeException(
41 throw new RuntimeException(
H A DExists.php19 use Elasticsearch\Common\Exceptions\RuntimeException; alias
35 throw new RuntimeException(
41 throw new RuntimeException(
H A DExistsSource.php19 use Elasticsearch\Common\Exceptions\RuntimeException; alias
35 throw new RuntimeException(
41 throw new RuntimeException(
H A DGetSource.php19 use Elasticsearch\Common\Exceptions\RuntimeException; alias
35 throw new RuntimeException(
41 throw new RuntimeException(
H A DGet.php19 use Elasticsearch\Common\Exceptions\RuntimeException; alias
35 throw new RuntimeException(
41 throw new RuntimeException(
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DLexer.php156 throw new \RuntimeException('NextToken requires a non-null input stream.');
172 throw new \RuntimeException('Unexpected interpreter type.');
261 throw new \RuntimeException('Empty Stack');
297 throw new \RuntimeException('Input must be CharStream.');
343 throw new \RuntimeException('Cannot emit EOF for null stream.');
367 throw new \RuntimeException('Unexpected interpreter type.');
376 throw new \RuntimeException('Unexpected interpreter type.');
385 throw new \RuntimeException('Unexpected interpreter type.');
394 throw new \RuntimeException('Unexpected interpreter type.');
406 throw new \RuntimeException('Canno
[all...]
/plugin/letsencrypt/
H A DLescript.php119 throw new \RuntimeException("Please check $uri - token not available");
138 … throw new \RuntimeException("Verification ended with error: " . json_encode($result));
179 …throw new \RuntimeException("Invalid response code: " . $this->client->getLastCode() . ", " . json…
210 … throw new \RuntimeException("Can't get certificate: HTTP code " . $this->client->getLastCode());
215 if (empty($certificates)) throw new \RuntimeException('No certificates generated');
232 throw new \RuntimeException(openssl_error_string());
304 … if (!$csr) throw new \RuntimeException("CSR couldn't be generated! " . openssl_error_string());
331 throw new \RuntimeException("Key export failed!");
337 …if(!is_dir($outputDirectory)) throw new \RuntimeException("Cant't create directory $outputDirector…
478 throw new \RuntimeException('Curl: '.curl_error($handle));
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DExceptionComparatorTest.php14 use \RuntimeException; alias
34 array(new RuntimeException, new RuntimeException),
35 array(new Exception, new RuntimeException)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DDeleteAlias.php19 use Elasticsearch\Common\Exceptions\RuntimeException; alias
36 throw new RuntimeException(
42 throw new RuntimeException(

12345678910>>...24