Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'environment/notfoundenvexception.php')
-rw-r--r--environment/notfoundenvexception.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/environment/notfoundenvexception.php b/environment/notfoundenvexception.php
new file mode 100644
index 00000000..9589fa9a
--- /dev/null
+++ b/environment/notfoundenvexception.php
@@ -0,0 +1,26 @@
+<?php
+/**
+ * ownCloud - galleryplus
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Olivier Paroz <owncloud@interfasys.ch>
+ *
+ * @copyright Olivier Paroz 2015
+ */
+
+namespace OCA\GalleryPlus\Environment;
+
+/**
+ * Thrown when the service cannot reply to a request
+ */
+class NotFoundEnvException extends EnvironmentException {
+
+ /**
+ * Constructor
+ *
+ * @param string $msg the message contained in the exception
+ */
+ public function __construct($msg) {}
+} \ No newline at end of file