public function __construct(HttpRequest $request, $requestType, HttpResponse $response, DispatcherInterface $dispatcher)
 {
     parent::__construct($request, $requestType, $dispatcher);
     $this->response = $response;
 }
 public function __construct(HttpRequest $request, $requestType, \Exception $exception, DispatcherInterface $dispatcher)
 {
     parent::__construct($request, $requestType, $dispatcher);
     $this->exception = $exception;
 }