1 | <?php |
||
14 | class InvalidContentException extends InvalidArgumentException |
||
15 | { |
||
16 | /** |
||
17 | * @var Rule |
||
18 | */ |
||
19 | protected $content; |
||
20 | |||
21 | /** |
||
22 | * Failed content |
||
23 | * @param mixed $content |
||
24 | * @return InvalidContentException |
||
25 | */ |
||
26 | public function setContent($content) |
||
31 | |||
32 | /** |
||
33 | * @return mixed |
||
34 | */ |
||
35 | public function getContent() |
||
39 | } |
||
40 |