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:
authorThomas Steur <thomas.steur@googlemail.com>2014-11-14 02:14:37 +0300
committerThomas Steur <thomas.steur@googlemail.com>2014-11-14 02:35:29 +0300
commit25aace1fb7bf949e2ac18a3ab0e84e84e1d91596 (patch)
treecb9c73461a263baa81317f2cb5a6abdeecad3cc6 /core/Exception
parent74436365533366123a78bf646b245116b8c0c565 (diff)
refs #6661 initial work on triggering a 400 bad request instead of 500 in case Idsite is wrong
Diffstat (limited to 'core/Exception')
-rw-r--r--core/Exception/UnexpectedWebsiteFoundException.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/Exception/UnexpectedWebsiteFoundException.php b/core/Exception/UnexpectedWebsiteFoundException.php
new file mode 100644
index 0000000000..68178d8599
--- /dev/null
+++ b/core/Exception/UnexpectedWebsiteFoundException.php
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+namespace Piwik\Exception;
+
+class UnexpectedWebsiteFoundException extends Exception
+{
+} \ No newline at end of file