/**
  * 3D認証実行する
  *
  * @param string $paRes    3Dセキュア認証結果
  * @param string $md    取引ID
  * @return  TdVerifyOutput 3D決済認証出力パラメータ
  * @exception GPayException
  */
 function requestTdVerify($paRes, $md)
 {
     // 3D決済認証入力パラメータを生成
     $input = new TdVerifyInput();
     $input->setPaRes($paRes);
     $input->setMd($md);
     // 3D決済認証を実行
     $tran = new TdVerify();
     $output = $tran->exec($input);
     $this->errorTrap($redirectUtil);
     return $output;
 }