Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
8 | class ConfigurationNotFoundException extends ShopwareHttpException |
||
9 | { |
||
10 | public function __construct(string $scope) |
||
15 | ); |
||
16 | } |
||
17 | |||
18 | public function getErrorCode(): string |
||
19 | { |
||
20 | return 'SYSTEM__SCOPE_NOT_FOUND'; |
||
21 | } |
||
22 | |||
23 | public function getStatusCode(): int |
||
26 | } |
||
27 | } |
||
28 |