|
1
|
|
|
<?php |
|
2
|
|
|
/* |
|
3
|
|
|
* 2017 Romain CANON <[email protected]> |
|
4
|
|
|
* |
|
5
|
|
|
* This file is part of the TYPO3 FormZ project. |
|
6
|
|
|
* It is free software; you can redistribute it and/or modify it |
|
7
|
|
|
* under the terms of the GNU General Public License, either |
|
8
|
|
|
* version 3 of the License, or any later version. |
|
9
|
|
|
* |
|
10
|
|
|
* For the full copyright and license information, see: |
|
11
|
|
|
* http://www.gnu.org/licenses/gpl-3.0.html |
|
12
|
|
|
*/ |
|
13
|
|
|
|
|
14
|
|
|
namespace Romm\Formz\Exceptions; |
|
15
|
|
|
|
|
16
|
|
|
class MissingArgumentException extends FormzException |
|
17
|
|
|
{ |
|
18
|
|
|
const ARGUMENT_MISSING = 'The argument "%s" was not found in the request.'; |
|
19
|
|
|
|
|
20
|
|
|
const CONDITION_CONSTRUCTOR_ARGUMENT_MISSING = 'Error while instantiating the condition "%s" of type "%s": a constructor argument is missing. Given arguments were: "%s".'; |
|
21
|
|
|
|
|
22
|
|
|
/** |
|
23
|
|
|
* @code 1490179179 |
|
24
|
|
|
* |
|
25
|
|
|
* @return self |
|
26
|
|
|
*/ |
|
27
|
|
|
final public static function ajaxControllerNameArgumentNotSet() |
|
28
|
|
|
{ |
|
29
|
|
|
/** @var self $exception */ |
|
30
|
|
|
$exception = self::getNewExceptionInstance( |
|
31
|
|
|
self::ARGUMENT_MISSING, |
|
32
|
|
|
['name'] |
|
33
|
|
|
); |
|
34
|
|
|
|
|
35
|
|
|
return $exception; |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* @code 1490179250 |
|
40
|
|
|
* |
|
41
|
|
|
* @return self |
|
42
|
|
|
*/ |
|
43
|
|
|
final public static function ajaxControllerClassNameArgumentNotSet() |
|
44
|
|
|
{ |
|
45
|
|
|
/** @var self $exception */ |
|
46
|
|
|
$exception = self::getNewExceptionInstance( |
|
47
|
|
|
self::ARGUMENT_MISSING, |
|
48
|
|
|
['className'] |
|
49
|
|
|
); |
|
50
|
|
|
|
|
51
|
|
|
return $exception; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* @code 1494850270 |
|
56
|
|
|
* |
|
57
|
|
|
* @param string $conditionName |
|
58
|
|
|
* @param string $conditionClassName |
|
59
|
|
|
* @param array $arguments |
|
60
|
|
|
* @return self |
|
61
|
|
|
*/ |
|
62
|
|
|
final public static function conditionConstructorArgumentMissing($conditionName, $conditionClassName, array $arguments) |
|
63
|
|
|
{ |
|
64
|
|
|
/** @var self $exception */ |
|
65
|
|
|
$exception = self::getNewExceptionInstance( |
|
66
|
|
|
self::CONDITION_CONSTRUCTOR_ARGUMENT_MISSING, |
|
67
|
|
|
[$conditionName, $conditionClassName, implode('", "', array_keys($arguments))] |
|
68
|
|
|
); |
|
69
|
|
|
|
|
70
|
|
|
return $exception; |
|
71
|
|
|
} |
|
72
|
|
|
} |
|
73
|
|
|
|