forked from swaggest/json-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPathException.php
52 lines (44 loc) · 913 Bytes
/
PathException.php
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
45
46
47
48
49
50
51
52
<?php
namespace Swaggest\JsonDiff;
use Swaggest\JsonDiff\JsonPatch\OpPath;
use Throwable;
class PathException extends Exception
{
/** @var OpPath */
private $operation;
/** @var string */
private $field;
/**
* @param string $message
* @param OpPath $operation
* @param string $field
* @param int $code
* @param Throwable|null $previous
*/
public function __construct(
$message,
$operation,
$field,
$code = 0,
Throwable $previous = null
)
{
parent::__construct($message, $code, $previous);
$this->operation = $operation;
$this->field = $field;
}
/**
* @return OpPath
*/
public function getOperation()
{
return $this->operation;
}
/**
* @return string
*/
public function getField()
{
return $this->field;
}
}