Home
last modified time | relevance | path

Searched refs:PasteException (Results 1 – 1 of 1) sorted by relevance

/plugin/imgpaste/
Daction.php6 use dokuwiki\plugin\imgpaste\Exception as PasteException; alias
54 } catch (PasteException $e) {
69 * @throws PasteException
74 if (!$data) throw new PasteException($this->getLang('e_nodata'), 400);
88 * @throws PasteException
97 if (!$data) throw new PasteException($lang['uploadfail'], 500);
103 * @throws PasteException
112 if (!isset($mimetypes[$type])) throw new PasteException($lang['uploadwrong'], 415);
120 if ($auth < AUTH_UPLOAD) throw new PasteException($lang['uploadfail'], 403);
134 if (is_array($result)) throw new PasteException($result[0], 500);
[all …]