We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395 still has access to your repository or
update the API account.
| 1 | <?php |
||
| 20 | class HttpResponseException extends \Exception |
||
| 21 | { |
||
| 22 | /** @var ResponseInterface */ |
||
| 23 | private $response; |
||
| 24 | /** @var RequestInterface */ |
||
| 25 | private $request; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @access public |
||
| 29 | * @return RequestInterface |
||
| 30 | */ |
||
| 31 | public function getRequest() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @access public |
||
| 38 | * @param RequestInterface $request |
||
| 39 | * @return $this |
||
| 40 | */ |
||
| 41 | public function setRequest(RequestInterface $request) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @access public |
||
| 50 | * @return ResponseInterface |
||
| 51 | */ |
||
| 52 | public function getResponse() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @access public |
||
| 59 | * @param ResponseInterface $response |
||
| 60 | * @return $this |
||
| 61 | */ |
||
| 62 | public function setResponse(ResponseInterface $response) |
||
| 68 | } |
||
| 69 |