aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_status/lib/Exception
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_status/lib/Exception')
-rw-r--r--apps/user_status/lib/Exception/InvalidClearAtException.php12
-rw-r--r--apps/user_status/lib/Exception/InvalidMessageIdException.php12
-rw-r--r--apps/user_status/lib/Exception/InvalidStatusIconException.php12
-rw-r--r--apps/user_status/lib/Exception/InvalidStatusTypeException.php12
-rw-r--r--apps/user_status/lib/Exception/StatusMessageTooLongException.php12
5 files changed, 60 insertions, 0 deletions
diff --git a/apps/user_status/lib/Exception/InvalidClearAtException.php b/apps/user_status/lib/Exception/InvalidClearAtException.php
new file mode 100644
index 00000000000..a3bd4dfa0d0
--- /dev/null
+++ b/apps/user_status/lib/Exception/InvalidClearAtException.php
@@ -0,0 +1,12 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\UserStatus\Exception;
+
+class InvalidClearAtException extends \Exception {
+}
diff --git a/apps/user_status/lib/Exception/InvalidMessageIdException.php b/apps/user_status/lib/Exception/InvalidMessageIdException.php
new file mode 100644
index 00000000000..1feb36a916a
--- /dev/null
+++ b/apps/user_status/lib/Exception/InvalidMessageIdException.php
@@ -0,0 +1,12 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\UserStatus\Exception;
+
+class InvalidMessageIdException extends \Exception {
+}
diff --git a/apps/user_status/lib/Exception/InvalidStatusIconException.php b/apps/user_status/lib/Exception/InvalidStatusIconException.php
new file mode 100644
index 00000000000..80dff2a7666
--- /dev/null
+++ b/apps/user_status/lib/Exception/InvalidStatusIconException.php
@@ -0,0 +1,12 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\UserStatus\Exception;
+
+class InvalidStatusIconException extends \Exception {
+}
diff --git a/apps/user_status/lib/Exception/InvalidStatusTypeException.php b/apps/user_status/lib/Exception/InvalidStatusTypeException.php
new file mode 100644
index 00000000000..a09284be40e
--- /dev/null
+++ b/apps/user_status/lib/Exception/InvalidStatusTypeException.php
@@ -0,0 +1,12 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\UserStatus\Exception;
+
+class InvalidStatusTypeException extends \Exception {
+}
diff --git a/apps/user_status/lib/Exception/StatusMessageTooLongException.php b/apps/user_status/lib/Exception/StatusMessageTooLongException.php
new file mode 100644
index 00000000000..03d578abf46
--- /dev/null
+++ b/apps/user_status/lib/Exception/StatusMessageTooLongException.php
@@ -0,0 +1,12 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\UserStatus\Exception;
+
+class StatusMessageTooLongException extends \Exception {
+}