-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathUpdateHandlingException.php
More file actions
44 lines (35 loc) · 1.01 KB
/
Copy pathUpdateHandlingException.php
File metadata and controls
44 lines (35 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Component\Resource\Exception;
class UpdateHandlingException extends \Exception
{
protected string $flash;
protected int $apiResponseCode;
public function __construct(
string $message = 'Ups, something went wrong during updating a resource, please try again.',
string $flash = 'something_went_wrong_error',
int $apiResponseCode = 400,
int $code = 0,
?\Exception $previous = null
) {
parent::__construct($message, $code, $previous);
$this->flash = $flash;
$this->apiResponseCode = $apiResponseCode;
}
public function getFlash(): string
{
return $this->flash;
}
public function getApiResponseCode(): int
{
return $this->apiResponseCode;
}
}