From d00d1ab2a28f428223e52b17052c072c64784016 Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Sat, 29 Aug 2020 23:39:35 +0200 Subject: Create V2 mapper, Service and management commands Signed-off-by: Sean Molenaar --- .../Exceptions/ServiceConflictException.php | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 lib/Service/Exceptions/ServiceConflictException.php (limited to 'lib/Service/Exceptions/ServiceConflictException.php') 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 @@ + + * @author Bernhard Posselt + * @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); + } +} -- cgit v1.2.3