public function __construct(RequestInterface $request, ResponseInterface $response = null, \Exception $exception)
 {
     parent::__construct($request);
     $this->response = $response;
     $this->exception = $exception;
 }
 public function __construct(RequestInterface $request, ResponseInterface $response)
 {
     parent::__construct($request);
     $this->response = $response;
 }