1 | <?php |
||
8 | class RuleMatchException |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $exception; |
||
14 | |||
15 | /** |
||
16 | * @param string $exception |
||
17 | */ |
||
18 | 6 | public function __construct($exception) |
|
22 | |||
23 | /** |
||
24 | * |
||
25 | */ |
||
26 | 6 | public function __destruct() |
|
30 | |||
31 | /** |
||
32 | * @param string $exception |
||
33 | * @param ProtocolInterface $protocol |
||
34 | * @return bool |
||
35 | */ |
||
36 | 4 | public function __invoke($exception, ProtocolInterface $protocol) |
|
40 | } |
||
41 |