1 | <?php |
||
14 | class BulkWithErrorsException extends \Exception |
||
15 | { |
||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $response; |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function __construct($message = '', $code = 0, \Exception $previous = null, $response = []) |
||
29 | |||
30 | /** |
||
31 | * @return array |
||
32 | */ |
||
33 | public function getResponse() |
||
37 | } |
||
38 |