| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 2 | public function __construct(ResourceObject $resource, string $name, \Exception $previous = null) |
|
| 37 | { |
||
| 38 | 2 | $this->name = $name; |
|
| 39 | 2 | $this->resource = $resource; |
|
| 40 | |||
| 41 | 2 | $message = sprintf('Attribute "%s" not found inside of [%s].', $name, $resource); |
|
| 42 | |||
| 43 | 2 | parent::__construct($message, 0, $previous); |
|
| 44 | 2 | } |
|
| 45 | |||
| 65 | } |