Home
last modified time | relevance | path

Searched refs:Exception (Results 26 – 50 of 92) sorted by relevance

1234

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchiveIOException.php8 class ArchiveIOException extends \Exception
H A DFileInfoException.php8 class FileInfoException extends \Exception
/dokuwiki/inc/Exception/
H A DFatalException.php3 namespace dokuwiki\Exception;
6 * Fatal Errors are converted into this Exception in out Shutdown handler
/dokuwiki/inc/Action/Exception/
H A DActionException.php3 namespace dokuwiki\Action\Exception;
14 * @package dokuwiki\Action\Exception
16 class ActionException extends \Exception
59 * Should this Exception's message be shown to the user?
H A DActionUserRequiredException.php3 namespace dokuwiki\Action\Exception;
13 * @package dokuwiki\Action\Exception
H A DActionAbort.php3 namespace dokuwiki\Action\Exception;
8 * Strictly speaking not an Exception but an expected execution path. Used to
16 * @package dokuwiki\Action\Exception
H A DActionAclRequiredException.php3 namespace dokuwiki\Action\Exception;
13 * @package dokuwiki\Action\Exception
H A DActionDisabledException.php3 namespace dokuwiki\Action\Exception;
13 * @package dokuwiki\Action\Exception
/dokuwiki/inc/Action/
H A DLogout.php5 use dokuwiki\Action\Exception\ActionDisabledException;
6 use dokuwiki\Action\Exception\ActionException;
H A DSave.php5 use dokuwiki\Action\Exception\ActionAbort;
6 use dokuwiki\Action\Exception\ActionException;
H A DRevert.php5 use dokuwiki\Action\Exception\ActionAbort;
6 use dokuwiki\Action\Exception\ActionException;
H A DRecover.php5 use dokuwiki\Action\Exception\ActionAbort;
H A DAbstractAliasAction.php5 use dokuwiki\Action\Exception\FatalException;
H A DCheck.php5 use dokuwiki\Action\Exception\ActionAbort;
H A DCancel.php5 use dokuwiki\Action\Exception\ActionAbort;
H A DAbstractUserAction.php5 use dokuwiki\Action\Exception\ActionUserRequiredException;
H A DAbstractAclAction.php5 use dokuwiki\Action\Exception\ActionAclRequiredException;
H A DLogin.php5 use dokuwiki\Action\Exception\ActionException;
H A DDraftdel.php6 use dokuwiki\Action\Exception\ActionAbort;
H A DDraft.php6 use dokuwiki\Action\Exception\ActionException;
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/
H A DException.php46 use SimplePie\Exception as SimplePieException;
48 class_exists('SimplePie\Exception');
50 // @trigger_error(sprintf('Using the "SimplePie_Exception" class is deprecated since SimplePie 1.7.0, use "SimplePie\Exception" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Exception" instead */
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php108 * @throws Exception
120 * @throws Exception
131 * @throws Exception
136 throw new Exception('This has to be run from the command line');
254 * @param \Exception|string $error either an exception or an error message
260 if (is_object($error) && is_a($error, 'Exception')) {
261 /** @var Exception $error */
269 $code = Exception::E_ANY;
/dokuwiki/inc/
H A DActionRouter.php7 use dokuwiki\Action\Exception\ActionDisabledException;
8 use dokuwiki\Action\Exception\ActionException;
9 use dokuwiki\Action\Exception\FatalException;
10 use dokuwiki\Action\Exception\NoActionException;
112 } catch (\Exception $e) {
149 * @param \Exception|FatalException $e
/dokuwiki/lib/exe/
H A Dxmlrpc.php17 } catch (\Exception $e) {
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php649 * @throws Exception when something goes wrong
655 throw new Exception($this->getLang('msg_upload_failed') . ' (' . $_FILES[$field]['error'] . ')');
659 if (!$tmp) throw new Exception($this->getLang('error_dircreate'));
667 throw new Exception($this->getLang('msg_upload_failed'));
681 * @throws Exception when something goes wrong
697 * @throws \Exception when something goes wrong
709 throw new Exception('Error, the requested extension hasn\'t been installed or updated');
962 * @throws Exception when something goes wrong
969 throw new Exception($this->getLang('error_badurl'));
982 throw new Exception(
[all...]

1234