public function response()
 {
     $askParameters = [];
     $this->message and $askParameters['error'] = $this->message;
     $this->description and $askParameters['error_description'] = $this->description;
     $response = parent::response();
     $this->authorization->ask($response, $askParameters);
     return $response;
 }