Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class SignatureError extends \Exception |
||
13 | { |
||
14 | protected $signatureCode; |
||
15 | public function __construct($message = "", $signatureCode = null, $code = 0, Throwable $previous = null) |
||
16 | { |
||
17 | $this->signatureCode = $signatureCode; |
||
18 | parent::__construct($message, $code, $previous); |
||
19 | } |
||
20 | |||
21 | public function getSignatureCode() |
||
24 | } |
||
25 | } |
||
26 |