diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
index 117ade9..34406be 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
@@ -103,7 +103,7 @@ function is_exception($arg = NULL) {
     return !empty($this->options['exception']['value']) && $this->options['exception']['value'] === $arg;
   }
 
-  function exception_title() {
+  function exceptionTitle() {
     // If title overriding is off for the exception, return the normal title.
     if (empty($this->options['exception']['title_enable'])) {
       return $this->get_title();
diff --git a/core/modules/views/lib/Drupal/views/ViewExecutable.php b/core/modules/views/lib/Drupal/views/ViewExecutable.php
index a8a8dd2..4050fc8 100644
--- a/core/modules/views/lib/Drupal/views/ViewExecutable.php
+++ b/core/modules/views/lib/Drupal/views/ViewExecutable.php
@@ -899,7 +899,7 @@ protected function _buildArguments() {
         }
 
         if ($argument->is_exception()) {
-          $arg_title = $argument->exception_title();
+          $arg_title = $argument->exceptionTitle();
         }
         else {
           $arg_title = $argument->get_title();
