aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/notfoundexception.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/lib/notfoundexception.php')
-rw-r--r--apps/files_external/lib/notfoundexception.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/files_external/lib/notfoundexception.php b/apps/files_external/lib/notfoundexception.php
new file mode 100644
index 00000000000..d1d15309d5b
--- /dev/null
+++ b/apps/files_external/lib/notfoundexception.php
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Copyright (c) 2015 Vincent Petry <pvince81@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace OCA\Files_external;
+
+/**
+ * Storage is not found
+ */
+class NotFoundException extends \Exception {
+}