Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class FormInvalidException extends ApiException |
||
15 | { |
||
16 | public const DEFAULT_MESSAGE = 'Submitted form did not pass validation.'; |
||
17 | |||
18 | /** |
||
19 | * @param string $message |
||
20 | * @param int $code |
||
21 | * @param array $data |
||
22 | */ |
||
23 | 4 | public function __construct(string $message, int $code, array $data = []) |
|
28 |