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 03:26:03 +0300
committerThomas Steur <thomas.steur@googlemail.com>2014-11-14 03:26:03 +0300
commite66c3d52a9e9564374d65732d19a2cec5d65bf2e (patch)
tree58c8837df6390c6567c0705222cba0fb5ee6f118 /core/Exception
parent03d1687c49860afbf7aa056d983c442d5f0203b5 (diff)
refs #6661 also return a HTTP 400 in case there is another invalid request param
Diffstat (limited to 'core/Exception')
-rw-r--r--core/Exception/InvalidRequestParameterException.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/Exception/InvalidRequestParameterException.php b/core/Exception/InvalidRequestParameterException.php
new file mode 100644
index 0000000000..13ead2e716
--- /dev/null
+++ b/core/Exception/InvalidRequestParameterException.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 InvalidRequestParameterException extends Exception
+{
+} \ No newline at end of file