summaryrefslogtreecommitdiffstats
path: root/lib/private/serviceunavailableexception.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-07-24 17:16:34 +0200
committerRobin Appelman <icewind@owncloud.com>2014-08-04 13:41:04 +0200
commit4608f8a3b5f3f88ce033817f682103c31f8a934f (patch)
tree65c8df3bb84a35a43f553e7ae2bf0a4cdb7882a0 /lib/private/serviceunavailableexception.php
parent43d790239d44e1af6109f244920c3f8ca6513022 (diff)
downloadnextcloud-server-4608f8a3b5f3f88ce033817f682103c31f8a934f.tar.gz
nextcloud-server-4608f8a3b5f3f88ce033817f682103c31f8a934f.zip
Throw an exception when we try to load an app that needs to be upgraded
Diffstat (limited to 'lib/private/serviceunavailableexception.php')
-rw-r--r--lib/private/serviceunavailableexception.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/private/serviceunavailableexception.php b/lib/private/serviceunavailableexception.php
new file mode 100644
index 00000000000..15e4cd5c2fd
--- /dev/null
+++ b/lib/private/serviceunavailableexception.php
@@ -0,0 +1,12 @@
+<?php
+/**
+ * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace OC;
+
+class ServiceUnavailableException extends \Exception {
+}