1 | <?php |
||
7 | class PasswordMismatchException extends Iae implements IronException |
||
8 | { |
||
9 | private $idProvided; |
||
10 | private $idSought; |
||
11 | |||
12 | /** |
||
13 | * PasswordMismatchException constructor. |
||
14 | * @param string $idProvided |
||
15 | * @param string $idSought |
||
16 | * @param string $message |
||
17 | * @param $code |
||
18 | * @param Exception $previous |
||
19 | */ |
||
20 | public function __construct( |
||
31 | |||
32 | /** |
||
33 | * @return string |
||
34 | */ |
||
35 | public function getIdOfPasswordProvided() |
||
39 | |||
40 | /** |
||
41 | * @return string |
||
42 | */ |
||
43 | public function getIdOfPasswordSought() |
||
47 | } |
||
48 |