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