summaryrefslogtreecommitdiffstats
path: root/lib/private/servernotavailableexception.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-04-01 17:12:28 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2015-04-10 09:12:37 +0200
commit5626a02d69e26bda25bc14f9e5405dce7f928d17 (patch)
treeb346bd15dffc633070966f9671c315daa76ed01f /lib/private/servernotavailableexception.php
parent473d3e14c887049aa6d5877192126f8aef3a8d8f (diff)
downloadnextcloud-server-5626a02d69e26bda25bc14f9e5405dce7f928d17.tar.gz
nextcloud-server-5626a02d69e26bda25bc14f9e5405dce7f928d17.zip
throw exception if setup is incomplete
Diffstat (limited to 'lib/private/servernotavailableexception.php')
-rw-r--r--lib/private/servernotavailableexception.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/private/servernotavailableexception.php b/lib/private/servernotavailableexception.php
new file mode 100644
index 00000000000..5a57917d23a
--- /dev/null
+++ b/lib/private/servernotavailableexception.php
@@ -0,0 +1,27 @@
+<?php
+/**
+ * @author Morris Jobke <hey@morrisjobke.de>
+ *
+ * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OC;
+
+
+class ServerNotAvailableException extends \Exception {
+
+}