1 | <?php |
||
19 | class InvalidEntryException extends FormzException |
||
20 | { |
||
21 | const INVALID_CSS_CLASS_NAMESPACE = 'The class "%s" is not valid: the namespace of the error must be one of the following: %s.'; |
||
22 | |||
23 | const MIDDLEWARE_NOT_SENDING_SIGNALS = 'The middleware "%s" does not implement interface "%s", therefore it can not dispatch signals.'; |
||
24 | |||
25 | /** |
||
26 | * @code 1467623504 |
||
27 | * |
||
28 | * @param string $className |
||
29 | * @param array $acceptedClassesNameSpace |
||
30 | * @return self |
||
31 | */ |
||
32 | final public static function invalidCssClassNamespace($className, array $acceptedClassesNameSpace) |
||
42 | |||
43 | /** |
||
44 | * @code 1490798324 |
||
45 | * |
||
46 | * @param AbstractMiddleware $middleware |
||
47 | * @return InvalidEntryException |
||
48 | */ |
||
49 | final public static function middlewareNotSendingSignals(AbstractMiddleware $middleware) |
||
59 | } |
||
60 |