1 | <?php |
||
10 | class OnCredentialExceptionThrownEvent extends OnInvalidCredentialsEvent |
||
11 | { |
||
12 | /** |
||
13 | * @var CredentialException |
||
14 | */ |
||
15 | private $ex; |
||
16 | |||
17 | /** |
||
18 | * Constructor. |
||
19 | * |
||
20 | * @param CredentialException $ex |
||
21 | * @param null|object $user |
||
22 | */ |
||
23 | 4 | public function __construct(CredentialException $ex, $user = null) |
|
28 | |||
29 | /** |
||
30 | * @return CredentialException |
||
31 | */ |
||
32 | public function getCredentialException() |
||
36 | } |
||
37 |