2019-06-25 16:34:38 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2026-02-09 04:53:58 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2019-06-25 16:34:38 -04:00
|
|
|
/**
|
2024-06-06 13:48:28 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-06-25 16:34:38 -04:00
|
|
|
*/
|
2026-05-28 08:54:31 -04:00
|
|
|
|
2019-06-25 16:34:38 -04:00
|
|
|
namespace OCA\Files_Sharing\Exceptions;
|
|
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sharing and Resharing rights.
|
|
|
|
|
*
|
|
|
|
|
* Class SharingRightsException
|
|
|
|
|
*
|
|
|
|
|
* @package OCA\Files_Sharing\Exceptions
|
|
|
|
|
*/
|
|
|
|
|
class SharingRightsException extends Exception {
|
|
|
|
|
}
|