Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class LoadUnvalidObjectsException extends LoaderException |
||
11 | { |
||
12 | /** |
||
13 | * remove EtlException message prefix to only have dot notation format so that once the bundle is register on a |
||
14 | * project, developer can rely on translation |
||
15 | */ |
||
16 | protected $message = '%s'; |
||
17 | |||
18 | public array $arrayValidationErrors; |
||
19 | |||
20 | public function __construct(array $arrayValidationErrors) |
||
31 |