Home
last modified time | relevance | path

Searched refs:ActionException (Results 1 – 13 of 13) sorted by last modified time

/dokuwiki/inc/Action/Exception/
H A DActionException.php6 * Class ActionException
16 class ActionException extends \Exception class
25 * ActionException constructor.
H A DActionUserRequiredException.php15 class ActionUserRequiredException extends ActionException
H A DActionAbort.php11 * If you want to signal the same but under some error condition use ActionException
18 class ActionAbort extends ActionException
H A DActionAclRequiredException.php15 class ActionAclRequiredException extends ActionException
H A DActionDisabledException.php15 class ActionDisabledException extends ActionException
/dokuwiki/inc/Action/
H A DSave.php6 use dokuwiki\Action\Exception\ActionException; alias
31 if (!checkSecurityToken()) throw new ActionException('preview');
46 throw new ActionException('edit');
54 throw new ActionException('conflict');
H A DAbstractAction.php5 use dokuwiki\Action\Exception\ActionException; alias
49 * @throws ActionException
63 * @throws ActionException
H A DAdmin.php5 use dokuwiki\Action\Exception\ActionException; alias
33 throw new ActionException('denied');
H A DDraft.php6 use dokuwiki\Action\Exception\ActionException;
35 if (!isset($INFO['draft']) || !file_exists($INFO['draft'])) throw new ActionException('edit');
5 use dokuwiki\Action\Exception\ActionException; global() alias
H A DLogin.php5 use dokuwiki\Action\Exception\ActionException; alias
30 throw new ActionException();
H A DRevert.php6 use dokuwiki\Action\Exception\ActionException; alias
27 * @throws ActionException
32 if (!checkSecurityToken()) throw new ActionException();
44 if (!$text) throw new ActionException(); //something went wrong
51 throw new ActionException('edit');
H A DLogout.php6 use dokuwiki\Action\Exception\ActionException; alias
40 if (!checkSecurityToken()) throw new ActionException();
53 throw new ActionException('login');
/dokuwiki/inc/
H A DActionRouter.php8 use dokuwiki\Action\Exception\ActionException;
92 } catch (ActionException $e) {
124 * @param null|ActionException $e any previous exception that caused the transition
202 * @throws ActionException
222 throw new ActionException('denied');
7 use dokuwiki\Action\Exception\ActionException; global() alias