Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class ConcurrencyException extends AbstractException |
||
11 | { |
||
12 | /** |
||
13 | * ERROR_MESSAGE |
||
14 | */ |
||
15 | const ERROR_MESSAGE = 'Validation in progress, try again later'; |
||
16 | |||
17 | /** |
||
18 | * ERROR_CODE |
||
19 | */ |
||
20 | const ERROR_CODE = 429; |
||
21 | |||
22 | /** |
||
23 | * ConcurrencyException constructor. |
||
24 | */ |
||
25 | public function __construct() |
||
33 |