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:
Diffstat (limited to 'core/Tracker/Db/DbException.php')
-rw-r--r--core/Tracker/Db/DbException.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/core/Tracker/Db/DbException.php b/core/Tracker/Db/DbException.php
new file mode 100644
index 0000000000..620a461b70
--- /dev/null
+++ b/core/Tracker/Db/DbException.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ * @category Piwik
+ * @package Piwik
+ */
+
+namespace Piwik\Tracker\Db;
+
+use Exception;
+
+/**
+ * Database Exception
+ *
+ * @package Piwik
+ * @subpackage Tracker
+ */
+class DbException extends Exception
+{
+}