Exemplo n.º 1
0
 /**
  * Create a new response from an exception.
  *
  * @param  Symfony\Component\HttpKernel\Exception\HttpExceptionInterface $exception
  * @return \Peakfijn\GetSomeRest\Http\Response
  */
 public static function makeFromException(HttpExceptionInterface $exception)
 {
     $response = new static($exception instanceof RestException ? $exception->getContent() : $exception->getMessage(), $exception->getStatusCode(), $exception->getHeaders());
     $response->setException($exception);
     return $response;
 }