1 | <?php |
||
7 | class AccountNoEmailException extends AccountNotLinkedException |
||
8 | { |
||
9 | /** |
||
10 | * {@inheritdoc} |
||
11 | */ |
||
12 | public function getMessageKey() |
||
13 | { |
||
14 | return 'Not found email to completed registration. '. |
||
15 | 'Check setting on your {{ resource_owner_name }} '. |
||
16 | 'to provide an email with API access.'; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function getMessageData() |
||
26 | } |
||
27 |