summaryrefslogtreecommitdiffstats
path: root/lib/private/databasesetupexception.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-26 12:30:07 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-11-26 12:30:07 +0100
commit3338eede3ccb2ead223a46fd537b7504bb4786e0 (patch)
treeeb1645e8cceaae4fc578b301b52ae104944303d1 /lib/private/databasesetupexception.php
parenta2457b5fb9f1ef9fda82afc4cf7dc712d14488c9 (diff)
downloadnextcloud-server-3338eede3ccb2ead223a46fd537b7504bb4786e0.tar.gz
nextcloud-server-3338eede3ccb2ead223a46fd537b7504bb4786e0.zip
Correctly namespace DatabaseSetupException
Diffstat (limited to 'lib/private/databasesetupexception.php')
-rw-r--r--lib/private/databasesetupexception.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/private/databasesetupexception.php b/lib/private/databasesetupexception.php
new file mode 100644
index 00000000000..9235cda8c0e
--- /dev/null
+++ b/lib/private/databasesetupexception.php
@@ -0,0 +1,12 @@
+<?php
+/**
+ * Copyright (c) 2014 Lukas Reschke <lukas@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace OC;
+
+class DatabaseSetupException extends HintException {
+}