1 | <?php |
||
9 | class UnknownFrameException extends \Exception |
||
10 | { |
||
11 | protected $frame_type; |
||
12 | protected $length; |
||
13 | |||
14 | /** |
||
15 | * UnknownFrameException constructor. |
||
16 | * |
||
17 | * @param string $frame_type |
||
18 | * @param int $length |
||
19 | */ |
||
20 | 14 | public function __construct($frame_type, $length) |
|
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | 12 | public function getFrameType() |
|
41 | |||
42 | /** |
||
43 | * @return int |
||
44 | */ |
||
45 | 12 | public function getLength() |
|
49 | } |
||
50 |