| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | public function __construct($resource, \Exception $previous = null) |
||
| 17 | { |
||
| 18 | parent::__construct( |
||
| 19 | 'Resource "' . $resource . '" was not found on remote server, got a HTTP 404 error while trying to get the resource. ' . |
||
| 20 | 'Please verify if the resource exists, and if the HTTP method is correct', |
||
| 21 | 404, |
||
| 22 | $previous |
||
| 23 | ); |
||
| 24 | } |
||
| 25 | } |