Skip to content

Commit db04e2f

Browse files
author
Phil E. Taylor
authored
Fix Undefined class RuntimeException (#34331)
1 parent 1c78eef commit db04e2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/src/Application/CMSApplication.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ public function isAdmin()
692692
'deprecated'
693693
);
694694
}
695-
catch (RuntimeException $exception)
695+
catch (\RuntimeException $exception)
696696
{
697697
// Informational log only
698698
}
@@ -718,7 +718,7 @@ public function isSite()
718718
'deprecated'
719719
);
720720
}
721-
catch (RuntimeException $exception)
721+
catch (\RuntimeException $exception)
722722
{
723723
// Informational log only
724724
}

0 commit comments

Comments
 (0)