Home
last modified time | relevance | path

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

/plugin/struct/types/
H A DDate.php5 use dokuwiki\plugin\struct\meta\ValidationException; alias
71 * @throws ValidationException
80 throw new ValidationException('invalid date format');
83 throw new ValidationException('pastonly');
86 throw new ValidationException('futureonly');
H A DDateTime.php8 use dokuwiki\plugin\struct\meta\ValidationException; alias
69 * @throws ValidationException
80 throw new ValidationException('invalid datetime format');
83 throw new ValidationException('pastonly');
86 throw new ValidationException('futureonly');
93 throw new ValidationException('invalid datetime format');
H A DDecimal.php7 use dokuwiki\plugin\struct\meta\ValidationException; alias
97 * @throws ValidationException
105 throw new ValidationException('Decimal needed');
109 throw new ValidationException('Decimal min', (float) $this->config['min']);
113 throw new ValidationException('Decimal max', (float) $this->config['max']);
H A DMail.php5 use dokuwiki\plugin\struct\meta\ValidationException; alias
41 throw new ValidationException('Mail invalid', $mail);
H A DUrl.php5 use dokuwiki\plugin\struct\meta\ValidationException; alias
32 throw new ValidationException('Url invalid', $url);
H A DColor.php5 use dokuwiki\plugin\struct\meta\ValidationException; alias
20 throw new ValidationException('bad color specification');
H A DMedia.php5 use dokuwiki\plugin\struct\meta\ValidationException; alias
37 throw new ValidationException('Media mime type', $mime, $this->config['mime']);
H A DUser.php9 use dokuwiki\plugin\struct\meta\ValidationException;
35 if ($info === false) throw new ValidationException('User not found', $rawvalue);
8 use dokuwiki\plugin\struct\meta\ValidationException; global() alias
H A DAbstractBaseType.php11 use dokuwiki\plugin\struct\meta\ValidationException;
513 * @throws ValidationException
10 use dokuwiki\plugin\struct\meta\ValidationException; global() alias
/plugin/bez/struct/
H A DBezType.php5 use dokuwiki\plugin\struct\meta\ValidationException; alias
85 throw new ValidationException('Invalid BEZ reference');
89 throw new ValidationException('Invalid BEZ reference');
99 throw new ValidationException(ucfirst($table) . " with id: $id doesn't exists.");
/plugin/structprogress/types/
H A DProgress.php13 use dokuwiki\plugin\struct\meta\ValidationException; alias
40 throw new ValidationException('Decimal needed');
44 throw new ValidationException('Decimal min', $minvalue);
48 throw new ValidationException('Decimal max', $maxvalue);
/plugin/structgroup/types/
H A DGroup.php7 use dokuwiki\plugin\struct\meta\ValidationException; alias
32 throw new ValidationException('Group not found: "' . $rawvalue .
/plugin/struct/meta/
H A DValueValidator.php91 } catch (ValidationException $e) {
103 } catch (ValidationException $e) {
H A DValidationException.php6 * Class ValidationException
12 class ValidationException extends StructException class
/plugin/bez/mdl/
H A DValidator.php5 use dokuwiki\plugin\bez\meta\ValidationException; alias
78 throw new ValidationException('-unknown', array($field => $code));
99 } catch (ValidationException $e) {
H A DEntity.php13 use dokuwiki\plugin\bez\meta\ValidationException; alias
87 throw new ValidationException($this->get_table_name(), $this->validator->get_errors());
H A DThread_comment.php6 use dokuwiki\plugin\bez\meta\ValidationException; alias
H A DTask.php8 use dokuwiki\plugin\bez\meta\ValidationException; alias
287 throw new ValidationException('task', array('sholud be opened or done'));
490 throw new ValidationException("task", array('thread_id' => 'pin_task'));
H A DThread.php7 use dokuwiki\plugin\bez\meta\ValidationException; alias
145 throw new ValidationException('thread', array('state should be opened, closed or rejected'));
/plugin/bez/meta/
H A DValidationException.php5 class ValidationException extends \Exception class
/plugin/bez/action/
H A Ddefault.php227 } catch(bez\meta\ValidationException $e) {