mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 12:09:14 +00:00
18 lines
362 B
PHP
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 {
|
|
}
|