123456789101112131415161718 |
- <?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 {
- }
|