summaryrefslogtreecommitdiffstats
path: root/lib/Service/Exceptions/ServiceConflictException.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-08-29 23:39:35 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-27 15:35:31 +0200
commitd00d1ab2a28f428223e52b17052c072c64784016 (patch)
treec019f85fb7ac67147dd43ca64b4ac3cda99832f7 /lib/Service/Exceptions/ServiceConflictException.php
parent5687baca75d47dbdffd3de74e865ad2f71ef0cb7 (diff)
Create V2 mapper, Service and management commands
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib/Service/Exceptions/ServiceConflictException.php')
-rw-r--r--lib/Service/Exceptions/ServiceConflictException.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/Service/Exceptions/ServiceConflictException.php b/lib/Service/Exceptions/ServiceConflictException.php
new file mode 100644
index 000000000..4a1a80801
--- /dev/null
+++ b/lib/Service/Exceptions/ServiceConflictException.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * Nextcloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright 2012 Alessandro Cosentino
+ * @copyright 2012-2014 Bernhard Posselt
+ */
+
+namespace OCA\News\Service\Exceptions;
+
+class ServiceConflictException extends ServiceException
+{
+
+ /**
+ * Constructor
+ *
+ * @param string $msg the error message
+ */
+ public function __construct($msg)
+ {
+ parent::__construct($msg);
+ }
+}