Total Complexity | 2 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class PutPricelistNotFoundException extends \RuntimeException implements ClientException |
||
6 | { |
||
7 | private $errorModel; |
||
8 | public function __construct(\Starweb\Api\Generated\Model\ErrorModel $errorModel) |
||
9 | { |
||
10 | parent::__construct('Entity not found', 404); |
||
11 | $this->errorModel = $errorModel; |
||
12 | } |
||
13 | public function getErrorModel() |
||
16 | } |
||
17 | } |