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 90efcecc5664fd6bea00c5be771f8ed41a8b871a..cb236d94e30d1469391aba2d1efca76c8f337945 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
@@ -96,7 +96,7 @@ public function usesBreadcrumb() {
     return !empty($info['breadcrumb']);
   }
 
-  function is_exception($arg = NULL) {
+  public function isException($arg = NULL) {
     if (!isset($arg)) {
       $arg = isset($this->argument) ? $this->argument : NULL;
     }
@@ -945,7 +945,7 @@ public function validateArgument($arg) {
       return $this->argument_validated;
     }
 
-    if ($this->is_exception($arg)) {
+    if ($this->isException($arg)) {
       return $this->argument_validated = TRUE;
     }
 
diff --git a/core/modules/views/lib/Drupal/views/ViewExecutable.php b/core/modules/views/lib/Drupal/views/ViewExecutable.php
index 92c1be00b57680790643c1821e8bf936927ce9f2..9bef1d1fec13729d30afcd5f144a64110f76915c 100644
--- a/core/modules/views/lib/Drupal/views/ViewExecutable.php
+++ b/core/modules/views/lib/Drupal/views/ViewExecutable.php
@@ -875,7 +875,7 @@ protected function _buildArguments() {
           break;
         }
 
-        if ($argument->is_exception()) {
+        if ($argument->isException()) {
           $arg_title = $argument->exception_title();
         }
         else {