0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-12 12:09:14 +00:00
nextcloud_server/apps/files_sharing/lib/Exceptions/SharingRightsException.php
Andy Scherzinger 1e04619675
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-06-06 22:53:41 +02:00

18 lines
362 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Files_Sharing\Exceptions;
use Exception;
/**
* Sharing and Resharing rights.
*
* Class SharingRightsException
*
* @package OCA\Files_Sharing\Exceptions
*/
class SharingRightsException extends Exception {
}