1 | <?php |
||
14 | class TransportException extends \RuntimeException |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $category; |
||
20 | |||
21 | /** |
||
22 | * TransportException constructor. |
||
23 | * |
||
24 | * @param string $message |
||
25 | * @param int $code |
||
26 | * @param string $category |
||
27 | */ |
||
28 | public function __construct($message, $code = 0, $category = '') |
||
33 | |||
34 | /** |
||
35 | * Retrieve category. |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getCategory() |
||
43 | } |
||
44 |