Home
last modified time | relevance | path

Searched refs:Exception (Results 1 – 25 of 1775) sorted by relevance

12345678910>>...71

/plugin/jmol2/jmol/
H A DJmolAppletSigned0_ReadersMore.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
H A DJmolApplet0_ReadersMore.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jmol/ org/ ...
H A DJmolApplet0_ReadersCifPdb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jmol/ org/ ...
H A DJmolAppletSigned0_ReadersCifPdb.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
H A DJmolAppletSigned0_ReadersMolXyz.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
H A DJmolApplet0_ReadersMolXyz.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jmol/ org/ ...
H A DJmolApplet0_ShapeSurface.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jmol/ org/ ...
H A DJmolAppletSigned0_ShapeSurface.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DExceptionComparatorTest.php13 use \Exception; alias
33 array(new Exception, new Exception),
35 array(new Exception, new RuntimeException)
42 array(new Exception, null),
43 array(null, new Exception),
50 $exception1 = new Exception;
51 $exception2 = new Exception;
69 $exception1 = new Exception('Error', 100);
70 $exception2 = new Exception('Error', 101);
71 $exception3 = new Exception('Errors', 101);
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/WebService/
H A DClient.php5 use GeoIp2\Exception\AddressNotFoundException;
6 use GeoIp2\Exception\AuthenticationException;
7 use GeoIp2\Exception\GeoIp2Exception;
8 use GeoIp2\Exception\HttpException;
9 use GeoIp2\Exception\InvalidRequestException;
10 use GeoIp2\Exception\OutOfQueriesException;
194 } catch (\MaxMind\Exception\IpAddressNotFoundException $ex) {
200 } catch (\MaxMind\Exception\AuthenticationException $ex) {
212 } catch (\MaxMind\Exception\InvalidRequestException $ex) {
220 } catch (\MaxMind\Exception\HttpException $ex) {
[all …]
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DOptions.php41 * @throws Exception when arguments can't be read
113 * @throws Exception
118 throw new Exception("Command $command not registered");
135 * @throws Exception
140 throw new Exception("Command $command already registered");
159 * @throws Exception
164 throw new Exception("Command $command not registered");
175 throw new Exception("Short options should be exactly one ASCII character");
189 * @throws Exception
204 throw new Exception("No
[all...]
/plugin/database2/
H A Dmedia.php70 throw new Exception( 'invalid request method', 400 );
82 throw new Exception( 'invalid request', 400 );
89 throw new Exception( 'no such media', 404 );
96 throw new Exception( 'file is empty', 404 );
102 throw new Exception( 'invalid media', 403 );
119 throw new Exception( 'invalid request context', 400 );
127 throw new Exception( 'access denied', 403 );
185 throw new Exception( 'failed to retrieve', 500 );
190 throw new Exception( 'no such media', 404 );
324 throw new Exception( 'untyped data record', 403 );
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestListener.php20 * @param Exception $e
23 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time);
51 * @param Exception $e
54 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time);
60 * @param Exception $e
63 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time);
69 * @param Exception $e
72 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time);
/plugin/ifauthex/lib/
H A Dexceptions.php4 use \Exception; alias
6 class UnknownTokenException extends Exception {
10 public function __construct($text, $position, $code = 0, Exception $previous = null) {
31 class MalformedExpressionException extends Exception {
34 public function __construct($elementInstance, $message, $code = 0, Exception $previous = null) {
46 class InvalidExpressionException extends Exception {
61 class NotEnoughArgumentsException extends Exception {
64 public function __construct($elementDefinition, $code = 0, Exception $previous = null) {
80 class StrayTokenException extends Exception {
83 public function __construct($tokenInstance, $code = 0, Exception $previous = null) {
[all …]
/plugin/oauth/
H A DOAuthManager.php17 * @throws \OAuth\Common\Exception\Exception
35 * @throws Exception
36 * @throws \OAuth\Common\Exception\Exception
47 * @throws \OAuth\Common\Exception\Exception
68 if (!$service->checkToken()) throw new \OAuth\Common\Exception\Exception("Invalid Token - Login failed");
96 * @throws Exception
[all...]
/plugin/findologicxmlexport/vendor/hoa/exception/
H A DREADME.md19 # Hoa\Exception
79 $exception = new Hoa\Exception\Exception('Hello %s!', 0, 'world');
93 $previous = new Hoa\Exception\Exception('Hello previous.');
94 $exception = new Hoa\Exception\Exception('Hello %s!', 0, 'world', $previous);
105 * Nested exception (Hoa\Exception\Exception):
113 Most exceptions in Hoa extend `Hoa\Exception\Exception`, which fire themselves
149 $group['first'] = new Hoa\Exception\Exception('First reason');
150 $group['second'] = new Hoa\Exception\Exception('Second reason');
154 $group['third']['fourth'] = new Hoa\Exception\Exception('Fourth reason');
185 $group[] = new Hoa\Exception\Exception('Always present.');
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DCollection.php28 * @throws Exception\NotFound
38 throw new Exception\NotFound('File not found: ' . $name);
57 } catch (Exception\NotFound $e) {
91 throw new Exception\Forbidden('Permission denied to create file (filename ' . $name . ')');
99 * @throws Exception\Forbidden
104 throw new Exception\Forbidden('Permission denied to create directory');
H A DServer.php256 } catch (\Exception $e) {
260 } catch (\Exception $ignore) {
303 if ($e instanceof Exception) {
487 throw new Exception\NotImplemented($exMessage);
530 } catch (Exception\NotFound $e) {
746 } catch (Exception\NotFound $e) {
760 } catch (Exception\NotFound $e) {
1166 } catch (Exception\NotFound $e) {
1183 } catch (Exception\NotFound $e) {
1309 } catch (Exception\NotFound $e) {
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCollection.php28 * @throws Exception\NotFound
38 throw new Exception\NotFound('File not found: ' . $name);
57 } catch (Exception\NotFound $e) {
91 throw new Exception\Forbidden('Permission denied to create file (filename ' . $name . ')');
99 * @throws Exception\Forbidden
104 throw new Exception\Forbidden('Permission denied to create directory');
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dextension.cache.dbm.php102 * @throws Exception
109 throw new Exception('PHP is not compiled with dba support, required to use DBM style cache.');
114 …throw new Exception('PHP is not compiled --with '.$cache_type.' support, required to use DBM style…
120 throw new Exception('failed to create lock file: '.$lock_filename);
126 throw new Exception('lock file: '.$lock_filename.' is not writable');
136 throw new Exception('failed to create dbm file: '.$dbm_filename);
148 throw new Exception('failed to create dbm file: '.$dbm_filename);
192 * @throws Exception
203 throw new Exception('failed to clear cache/recreate dbm file: '.$this->dbm_filename);
/plugin/botbouncer/lib/
H A Dmollom.php196 …if(!isset($responseString->params->param->value->boolean)) throw new Exception('Invalid response i…
334 if(self::$publicKey === null) throw new Exception('Public key wasn\'t set.');
337 if(self::$privateKey === null) throw new Exception('Private key wasn\'t set.');
426 if(!isset($parts[0]) || !isset($parts[1])) throw new Exception('Invalid response in doCall.');
437 if(!in_array(substr($headers, 0, 12), $aValidHeaders)) throw new Exception('Invalid headers.');
441 if($responseXML === false) throw new Exception('Invalid body.');
453 throw new Exception('[error '.$code .'] '. $message, $code);
457 throw new Exception('[error '.$code .'] '. $message, $code);
468 throw new Exception('[error '.$code .'] '. $message, $code);
658 …if(!isset($responseString->params->param->value->int)) throw new Exception('Invalid response in ge…
[all …]
/plugin/rrdgraph/inc/
H A Drpncomputer.php25 * @throws Exception
30 …if (strspn($name, "abcdefghijklmnopqrstuvwxyz_.") != strlen($name)) throw new Exception("Invalid v…
83 * @throws Exception An exception is thrown if the RPN expression could not be parsed.
92 if (count($stack) < 2) throw new Exception("RPN stack underflow"); //FIXME: Position
102 if (count($stack) < 2) throw new Exception("RPN stack underflow"); //FIXME: Position
112 if (count($stack) < 2) throw new Exception("RPN stack underflow"); //FIXME: Position
122 if (count($stack) < 2) throw new Exception("RPN stack underflow"); //FIXME: Position
133 if (count($stack) < 2) throw new Exception("RPN stack underflow"); //FIXME: Position
155 if (count($stack) > 1) throw new Exception("Unused parameters on RPN stack.");
H A Dsvgbinding.php81 …if (!array_key_exists("var", $attributes)) throw new Exception("bind-tag is missing the var attrib…
82 …if (!array_key_exists("format", $attributes)) throw new Exception("bind-tag is missing the format …
114 throw new Exception("Closing bind tag without opening tag");
129 * @throws Exception
143 …if ($this->output === false) throw new Exception('Could not open file "' . $outputFileName . '" fo…
181 * @throws Exception
190 if ($rrdData === false) throw new Exception(rrd_error());
257 … throw new Exception('Unknown aggregation function ' . $this->aggregates[$bindingName]);
268 if ($data === false) throw new Exception('Could not load file "' . $inputFile. '".');
269 …if (xml_parse($xmlParser, $data, true) == 0) throw new Exception('Parsing SVG failed: ' . xml_erro…
/plugin/bookcreator/action/
H A Dhandleselection.php48 throw new Exception('Security Token did not match. Possible CSRF attack.');
76 } catch(Exception $e){
166 * @throws Exception
170 throw new Exception('no access to namespace: ' . $this->getConf('save_namespace'));
173 throw new Exception($this->getLang('empty'));
176 throw new Exception($this->getLang('needtitle'));
204 * @throws Exception
208 throw new Exception('no access to namespace: ' . $this->getConf('save_namespace'));
214 throw new Exception(sprintf($this->getLang('selectiondontexist'), $pageid));
228 * @throws Exception
[all...]
/plugin/adfs/phpsaml/lib/Saml/
H A DXmlSec.php70 * @throws Exception
76 throw new Exception('Multiple assertions are not supported');
81 throw new Exception('Timing issues (please check your clock settings)');
88 throw new Exception('Cannot locate Signature Node');
95 throw new Exception('We have no idea about the key');
100 } catch (Exception $e) {
101 throw new Exception('Reference Validation Failed');

12345678910>>...71