QiNiuOssAdapterException.php 490 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Liz\Flysystem\QiNiu;
  3. use Qiniu\Http\Response;
  4. class QiNiuOssAdapterException extends \Exception
  5. {
  6. /**
  7. * @var Response
  8. */
  9. private $response;
  10. /**
  11. * @return Response
  12. */
  13. public function getResponse()
  14. {
  15. return $this->response;
  16. }
  17. /**
  18. * @param $response
  19. *
  20. * @return $this
  21. */
  22. public function setResponse(Response $response)
  23. {
  24. $this->response = $response;
  25. return $this;
  26. }
  27. }