| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class NodeNotFoundException extends UserError |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function __construct($message = null, $code = 0, Throwable $previous = null) |
||
| 27 | { |
||
| 28 | $message = $message ?? 'Node not Found'; |
||
| 29 | parent::__construct($message, $code, $previous); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritDoc} |
||
| 34 | */ |
||
| 35 | public function getCategory() |
||
| 38 | } |
||
| 39 | } |
||
| 40 |