summaryrefslogtreecommitdiffstats
path: root/lib/Exceptions
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-05-16 16:46:06 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-05-16 16:46:06 -0100
commitd16537b403a0ee29f6c4d5d99c9e8cadd7a201e3 (patch)
treef920c293f47a15947e94e59503e3fa3ef475eb51 /lib/Exceptions
parent7d5ea91b58fce9e95b8e524ab8a6fed5858c2794 (diff)
Notes -> Stream
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Exceptions')
-rw-r--r--lib/Exceptions/DateTimeException.php10
-rw-r--r--lib/Exceptions/NoteNotFoundException.php8
-rw-r--r--lib/Exceptions/StreamNotFoundException.php8
3 files changed, 18 insertions, 8 deletions
diff --git a/lib/Exceptions/DateTimeException.php b/lib/Exceptions/DateTimeException.php
new file mode 100644
index 00000000..917c07e4
--- /dev/null
+++ b/lib/Exceptions/DateTimeException.php
@@ -0,0 +1,10 @@
+<?php
+
+namespace OCA\Social\Exceptions;
+
+use Exception;
+
+class DateTimeException extends Exception {
+
+}
+
diff --git a/lib/Exceptions/NoteNotFoundException.php b/lib/Exceptions/NoteNotFoundException.php
deleted file mode 100644
index 0bd86298..00000000
--- a/lib/Exceptions/NoteNotFoundException.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-
-namespace OCA\Social\Exceptions;
-
-class NoteNotFoundException extends \Exception {
-
-}
-
diff --git a/lib/Exceptions/StreamNotFoundException.php b/lib/Exceptions/StreamNotFoundException.php
new file mode 100644
index 00000000..5538996a
--- /dev/null
+++ b/lib/Exceptions/StreamNotFoundException.php
@@ -0,0 +1,8 @@
+<?php
+
+namespace OCA\Social\Exceptions;
+
+class StreamNotFoundException extends \Exception {
+
+}
+