From ec6ee905b557a0f4709fd3249112039e10521c4a Mon Sep 17 00:00:00 2001 From: aude Date: Mon, 6 Oct 2014 11:03:54 +0200 Subject: [PATCH] Move TimestampException to exception directory Change-Id: Id3829cbd155636839a272dc7e28e45bee7b87e8b --- includes/AutoLoader.php | 2 +- includes/{ => exception}/TimestampException.php | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename includes/{ => exception}/TimestampException.php (100%) diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index 50fcd610c2..2a45fc35fa 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -164,7 +164,6 @@ $wgAutoloadLocalClasses = array( 'StubObject' => 'includes/StubObject.php', 'StubUserLang' => 'includes/StubObject.php', 'MWTimestamp' => 'includes/MWTimestamp.php', - 'TimestampException' => 'includes/TimestampException.php', 'Title' => 'includes/Title.php', 'TitleArray' => 'includes/TitleArray.php', 'TitleArrayFromResult' => 'includes/TitleArrayFromResult.php', @@ -500,6 +499,7 @@ $wgAutoloadLocalClasses = array( 'UserBlockedError' => 'includes/exception/UserBlockedError.php', 'UserNotLoggedIn' => 'includes/exception/UserNotLoggedIn.php', 'ThrottledError' => 'includes/exception/ThrottledError.php', + 'TimestampException' => 'includes/exception/TimestampException.php', 'ReadOnlyError' => 'includes/exception/ReadOnlyError.php', 'PermissionsError' => 'includes/exception/PermissionsError.php', 'MWException' => 'includes/exception/MWException.php', diff --git a/includes/TimestampException.php b/includes/exception/TimestampException.php similarity index 100% rename from includes/TimestampException.php rename to includes/exception/TimestampException.php -- 2.20.1