mirror of
https://github.com/nextcloud/server.git
synced 2026-02-22 01:11:23 -05:00
21 lines
389 B
PHP
21 lines
389 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* 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 {
|
|
}
|