public function exceptionTitle() {
  // If title overriding is off for the exception, return the normal title.
  if (empty($this->options['exception']['title_enable'])) {
    return $this
      ->getTitle();
  }
  return $this->options['exception']['title'];
}