Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsgiehl <stefan@piwik.org>2013-08-01 01:20:47 +0400
committersgiehl <stefan@piwik.org>2013-08-01 01:20:47 +0400
commit6bcf267b21b6021e5bd3bd88e89fbfab80676757 (patch)
tree3a0efc3eba52001df0d58f3f3c3739b0adb38c66 /core/Archive.php
parent9c12ab4812459b9d9144c65bd0cc9b83d27b6581 (diff)
fixing more namespaces
Diffstat (limited to 'core/Archive.php')
-rw-r--r--core/Archive.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Archive.php b/core/Archive.php
index 0b726493bd..1d7d226f33 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -627,7 +627,7 @@ class Archive
* Returns the name of the plugin that archives a given report.
*
* @param string $report Archive data name, ie, 'nb_visits', 'UserSettings_...', etc.
- * @throws Exception
+ * @throws \Exception
* @return string
*/
public static function getPluginForReport($report)
@@ -645,7 +645,7 @@ class Archive
|| !\Piwik\PluginsManager::getInstance()->isPluginActivated($plugin)
) {
$pluginStr = empty($plugin) ? '' : "($plugin)";
- throw new Exception("Error: The report '$report' was requested but it is not available "
+ throw new \Exception("Error: The report '$report' was requested but it is not available "
. "at this stage. You may also disable the related plugin $pluginStr "
. "to avoid this error.");
}