| 1 | <?php |
||
| 19 | class InvalidUidSignatureException extends ResponseException |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @param string $uid |
||
| 23 | * @param string $expected |
||
| 24 | * @param string $signature |
||
| 25 | * @param ResponseInterface $response |
||
| 26 | * @param Exception|null $previous |
||
| 27 | */ |
||
| 28 | 2 | public function __construct($uid, $expected, $signature, ResponseInterface $response, Exception $previous = null) |
|
| 39 | } |
||
| 40 |