1 | <?php |
||
16 | class TooBigFrameException extends LimitationException |
||
17 | { |
||
18 | /** |
||
19 | * @var int |
||
20 | */ |
||
21 | private $maxLength; |
||
22 | |||
23 | /** |
||
24 | * @param int $maxLength |
||
25 | * @param string $message |
||
26 | */ |
||
27 | 13 | public function __construct(int $maxLength, string $message = 'The frame is too big to be processed.') |
|
32 | |||
33 | /** |
||
34 | * @return int |
||
35 | */ |
||
36 | 10 | public function getMaxLength() |
|
40 | } |
||
41 |