diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-12-03 10:13:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-03 10:13:55 +0100 |
commit | 109aee525d57ba556c0ae9b5d1521aa0a69719ed (patch) | |
tree | c5a0fd8e4551f5cc3715cdbfcfac3b7448661f55 /apps/files_sharing/lib/Exceptions | |
parent | 9fce87b2df43debdb2dc76c70b9af0d980535d3c (diff) | |
parent | f2c7ca45840d20a8b6c40937958f4e5a8953d0dd (diff) | |
download | nextcloud-server-109aee525d57ba556c0ae9b5d1521aa0a69719ed.tar.gz nextcloud-server-109aee525d57ba556c0ae9b5d1521aa0a69719ed.zip |
Merge pull request #15952 from nextcloud/feature/noid/inherited-shares
Inherited Shares
Diffstat (limited to 'apps/files_sharing/lib/Exceptions')
-rw-r--r-- | apps/files_sharing/lib/Exceptions/SharingRightsException.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/Exceptions/SharingRightsException.php b/apps/files_sharing/lib/Exceptions/SharingRightsException.php new file mode 100644 index 00000000000..2ec496c0421 --- /dev/null +++ b/apps/files_sharing/lib/Exceptions/SharingRightsException.php @@ -0,0 +1,40 @@ +<?php + +/** + * @copyright Copyright (c) 2019, Maxence Lange <maxence@artificial-owl.com> + * + * @author Maxence Lange <maxence@artificial-owl.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\Files_Sharing\Exceptions; + +use Exception; + + +/** + * Sharing and Resharing rights. + * + * Class SharingRightsException + * + * @package OCA\Files_Sharing\Exceptions + */ +class SharingRightsException extends Exception { + +} + |