/**
  * Gateway Timeout Error
  *
  * @param Exception $a_exception
  * @return MVC\View
  */
 public function gatewaytimeout(Exception $a_exception = null)
 {
     if (null == ($title = Application\Translator::translate('errors', '504'))) {
         $title = $this->errors[504]['title'];
     }
     return $this->custom(504, $title, $a_exception);
 }