summaryrefslogtreecommitdiffstats
path: root/lib/Exceptions
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-11-27 15:59:19 -0100
committerMaxence Lange <maxence@artificial-owl.com>2018-11-27 15:59:19 -0100
commitb2a045cb696d85c5e21a7c25ad72619a5ca607b1 (patch)
tree33604b6e23220a65c19ed9e2268f6bb9d60493c1 /lib/Exceptions
parent6210a6ec96f9bf6d92c5023724237028e88c5802 (diff)
queue and async
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Exceptions')
-rw-r--r--lib/Exceptions/EmptyQueueException.php8
-rw-r--r--lib/Exceptions/NoHighPriorityRequestException.php8
-rw-r--r--lib/Exceptions/QueueStatusException.php8
3 files changed, 24 insertions, 0 deletions
diff --git a/lib/Exceptions/EmptyQueueException.php b/lib/Exceptions/EmptyQueueException.php
new file mode 100644
index 00000000..1170b586
--- /dev/null
+++ b/lib/Exceptions/EmptyQueueException.php
@@ -0,0 +1,8 @@
+<?php
+
+namespace OCA\Social\Exceptions;
+
+class EmptyQueueException extends \Exception {
+
+}
+
diff --git a/lib/Exceptions/NoHighPriorityRequestException.php b/lib/Exceptions/NoHighPriorityRequestException.php
new file mode 100644
index 00000000..5911b460
--- /dev/null
+++ b/lib/Exceptions/NoHighPriorityRequestException.php
@@ -0,0 +1,8 @@
+<?php
+
+namespace OCA\Social\Exceptions;
+
+class NoHighPriorityRequestException extends \Exception {
+
+}
+
diff --git a/lib/Exceptions/QueueStatusException.php b/lib/Exceptions/QueueStatusException.php
new file mode 100644
index 00000000..5d90ac99
--- /dev/null
+++ b/lib/Exceptions/QueueStatusException.php
@@ -0,0 +1,8 @@
+<?php
+
+namespace OCA\Social\Exceptions;
+
+class QueueStatusException extends \Exception {
+
+}
+